diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-09-13 12:23:06 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-09-13 15:44:02 +0300 |
commit | 47bdea504067d00e9bed522e9575bd2416bfe4ee (patch) | |
tree | f970d1798727c88c8b945b20f4296dbccc5144b2 /run_unittests.py | |
parent | ad368cfc07b1bac1aa00e51038e749040cc2dea0 (diff) | |
download | meson-47bdea504067d00e9bed522e9575bd2416bfe4ee.zip meson-47bdea504067d00e9bed522e9575bd2416bfe4ee.tar.gz meson-47bdea504067d00e9bed522e9575bd2416bfe4ee.tar.bz2 |
mconf: Fix meson configure crash (fixes #5909)
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py index f06be23..8cc9811 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -3624,6 +3624,10 @@ recommended as it is not supported on some platforms''') self.maxDiff = None self.assertListEqual(res_nb, res_wb) + def test_meson_configure_from_source_does_not_crash(self): + testdir = os.path.join(self.unit_test_dir, '59 introspect buildoptions') + self._run(self.mconf_command + [testdir]) + def test_introspect_json_dump(self): testdir = os.path.join(self.unit_test_dir, '57 introspection') self.init(testdir) |