aboutsummaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py
index dd59ceb..72b497a 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -4002,7 +4002,8 @@ class AllPlatformTests(BasePlatformTests):
# Verify default values when passing no args that affect the
# configuration, and as a bonus, test that --profile-self works.
- self.init(testdir, extra_args=['--profile-self', '--fatal-meson-warnings'])
+ out = self.init(testdir, extra_args=['--profile-self', '--fatal-meson-warnings'])
+ self.assertNotIn('[default: true]', out)
obj = mesonbuild.coredata.load(self.builddir)
self.assertEqual(obj.options[OptionKey('default_library')].value, 'static')
self.assertEqual(obj.options[OptionKey('warning_level')].value, '1')