diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-07-14 18:57:39 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-07-15 00:23:42 +0300 |
commit | 7dee480a40462960db93a920d35495e59cbdbf87 (patch) | |
tree | faece84a8ddd239fedf934b8f69d5562ed1dcf7e /run_unittests.py | |
parent | c7a0c5cde4284d5c4fdd0bdf249f95144daad5a6 (diff) | |
download | meson-7dee480a40462960db93a920d35495e59cbdbf87.zip meson-7dee480a40462960db93a920d35495e59cbdbf87.tar.gz meson-7dee480a40462960db93a920d35495e59cbdbf87.tar.bz2 |
Condense test directory names for next release.
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/run_unittests.py b/run_unittests.py index e8f453d..29edf6a 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -2756,7 +2756,7 @@ class AllPlatformTests(BasePlatformTests): self.run_tests() def test_implicit_forcefallback(self): - testdir = os.path.join(self.unit_test_dir, '95 implicit force fallback') + testdir = os.path.join(self.unit_test_dir, '96 implicit force fallback') with self.assertRaises(subprocess.CalledProcessError) as cm: self.init(testdir) self.init(testdir, extra_args=['--wrap-mode=forcefallback']) @@ -4016,9 +4016,9 @@ class AllPlatformTests(BasePlatformTests): for (t, f) in [ ('10 out of bounds', 'meson.build'), ('18 wrong plusassign', 'meson.build'), - ('61 bad option argument', 'meson_options.txt'), - ('102 subdir parse error', os.path.join('subdir', 'meson.build')), - ('103 invalid option file', 'meson_options.txt'), + ('60 bad option argument', 'meson_options.txt'), + ('98 subdir parse error', os.path.join('subdir', 'meson.build')), + ('99 invalid option file', 'meson_options.txt'), ]: tdir = os.path.join(self.src_root, 'test cases', 'failing', t) |