diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2023-03-28 14:09:58 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2023-03-28 17:18:57 +0300 |
commit | 78d8924d433401a969b6bfaa7b2a4bd613609744 (patch) | |
tree | 8c1f97d5b510f705b2d22b85caa4af9216f2e58d /unittests/platformagnostictests.py | |
parent | c4cc14c27c7e46f65b410dbdd0f87dd73427b20d (diff) | |
download | meson-78d8924d433401a969b6bfaa7b2a4bd613609744.zip meson-78d8924d433401a969b6bfaa7b2a4bd613609744.tar.gz meson-78d8924d433401a969b6bfaa7b2a4bd613609744.tar.bz2 |
Condense test directories for rc1.
Diffstat (limited to 'unittests/platformagnostictests.py')
-rw-r--r-- | unittests/platformagnostictests.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unittests/platformagnostictests.py b/unittests/platformagnostictests.py index 18540b5..9fb24f3 100644 --- a/unittests/platformagnostictests.py +++ b/unittests/platformagnostictests.py @@ -37,7 +37,7 @@ class PlatformAgnosticTests(BasePlatformTests): Tests that find_program() with a relative path does not find the program in current workdir. ''' - testdir = os.path.join(self.unit_test_dir, '100 relative find program') + testdir = os.path.join(self.unit_test_dir, '101 relative find program') self.init(testdir, workdir=testdir) def test_invalid_option_names(self): @@ -73,11 +73,11 @@ class PlatformAgnosticTests(BasePlatformTests): interp.process(fname) def test_python_dependency_without_pkgconfig(self): - testdir = os.path.join(self.unit_test_dir, '102 python without pkgconfig') + testdir = os.path.join(self.unit_test_dir, '103 python without pkgconfig') self.init(testdir, override_envvars={'PKG_CONFIG': 'notfound'}) def test_debug_function_outputs_to_meson_log(self): - testdir = os.path.join(self.unit_test_dir, '104 debug function') + testdir = os.path.join(self.unit_test_dir, '105 debug function') log_msg = 'This is an example debug output, should only end up in debug log' output = self.init(testdir) @@ -89,7 +89,7 @@ class PlatformAgnosticTests(BasePlatformTests): self.assertIn(log_msg, mesonlog) def test_new_subproject_reconfigure(self): - testdir = os.path.join(self.unit_test_dir, '107 new subproject on reconfigure') + testdir = os.path.join(self.unit_test_dir, '108 new subproject on reconfigure') self.init(testdir) self.build() |