aboutsummaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2021-06-15 14:40:59 +0200
committerDaniel Mensinger <daniel@mensinger-ka.de>2021-06-18 23:48:33 +0200
commitb2112bc4f68fc30fd171cb21451e5e1baca7a364 (patch)
tree84a56c24b26d291373ad402eec63518f89e6386a /run_unittests.py
parent10afec575b528f192f4856c36169f0473bbdf18a (diff)
downloadmeson-b2112bc4f68fc30fd171cb21451e5e1baca7a364.zip
meson-b2112bc4f68fc30fd171cb21451e5e1baca7a364.tar.gz
meson-b2112bc4f68fc30fd171cb21451e5e1baca7a364.tar.bz2
tests: Always enable the traceback in run_project_tests.py
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py
index 8c20e72..f81462f 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -6165,7 +6165,7 @@ class FailureTests(BasePlatformTests):
'''
tdir = os.path.join(self.unit_test_dir, '21 exit status')
with self.assertRaises(subprocess.CalledProcessError) as cm:
- self.init(tdir, inprocess=False, override_envvars = {'MESON_UNIT_TEST': '1'})
+ self.init(tdir, inprocess=False, override_envvars = {'MESON_UNIT_TEST': '1', 'MESON_FORCE_BACKTRACE': ''})
self.assertEqual(cm.exception.returncode, 2)
self.wipe()