diff options
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py index 2683e01..3a473ea 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -3642,6 +3642,12 @@ recommended as it is not supported on some platforms''') self.maxDiff = None self.assertListEqual(res_nb, expected) + def test_unstable_coredata(self): + testdir = os.path.join(self.common_test_dir, '1 trivial') + self.init(testdir) + # just test that the command does not fail (e.g. because it throws an exception) + self._run([*self.meson_command, 'unstable-coredata', self.builddir]) + class FailureTests(BasePlatformTests): ''' Tests that test failure conditions. Build files here should be dynamically |