diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-02-11 17:32:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 17:32:45 +0200 |
commit | 5f697358f0e4249c103f4325424e5ca725ee5261 (patch) | |
tree | d61667f14e5589f7630e72e9ed3b9fa7d2ad0b8e /run_unittests.py | |
parent | 2a8d6690f73ec6415c2ee592e856b3b6de7cfb02 (diff) | |
parent | b1efd03619f6c88acaf4f0106d2192a4a1cf8460 (diff) | |
download | meson-5f697358f0e4249c103f4325424e5ca725ee5261.zip meson-5f697358f0e4249c103f4325424e5ca725ee5261.tar.gz meson-5f697358f0e4249c103f4325424e5ca725ee5261.tar.bz2 |
Merge pull request #8322 from bonzini/mtest-fixes
mtest fixes for 0.57
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py index 839f82b..8083342 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -2551,6 +2551,8 @@ class AllPlatformTests(BasePlatformTests): self._run(self.mtest_command + ['--setup=onlyenv3']) # Setup with only a timeout works self._run(self.mtest_command + ['--setup=timeout']) + # Setup that does not define a wrapper works with --wrapper + self._run(self.mtest_command + ['--setup=timeout', '--wrapper', shutil.which('valgrind')]) # Setup that skips test works self._run(self.mtest_command + ['--setup=good']) with open(os.path.join(self.logdir, 'testlog-good.txt')) as f: |