diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-03-12 11:14:28 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-04-08 10:00:16 -0700 |
| commit | aa8f9229fc76e5d89da04495f3b188f4438de32e (patch) | |
| tree | 35113b05aba6c7ea82c6fe3559782107ffffd879 /unittests | |
| parent | 9d1837e1afc919d18645c8fd6788cf44ac7d078d (diff) | |
| download | meson-aa8f9229fc76e5d89da04495f3b188f4438de32e.tar.gz | |
coredata: delete set_default_options
This was only being used by the introspection interpreter, which meant
the two interpreters had different behavior. They still do, which is
really bad because the IntrospectionInterpreter doesn't have the command
line options or project_default_options. I have a plan to fix that
later, and I don't want to spend time on it here, as it's not a
regression of this patch, it's just the status quo.
This also fixes an issue caused by dead code being left, and hit, due to
the option refactor branch.
Fixes: #14382
Diffstat (limited to 'unittests')
| -rw-r--r-- | unittests/rewritetests.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/unittests/rewritetests.py b/unittests/rewritetests.py index dfd69c83a..169c0350c 100644 --- a/unittests/rewritetests.py +++ b/unittests/rewritetests.py @@ -408,7 +408,6 @@ class RewriterTests(BasePlatformTests): for orig_line, new_line in zip_longest(original_contents.splitlines(), new_contents.splitlines()): self.assertEqual(orig_line, new_line) - @unittest.expectedFailure def test_rewrite_prefix(self) -> None: self.prime('7 prefix') out = self.rewrite_raw(self.builddir, ['kwargs', 'info', 'project', '/']) |
