aboutsummaryrefslogtreecommitdiff
path: root/unittests/platformagnostictests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2022-10-24 22:26:06 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2022-10-24 22:26:06 +0300
commit8b5164f9bc204e0c7419b8e00025eff42d03c42f (patch)
tree020ce1c6874420191735c22a7665fa1392d68db7 /unittests/platformagnostictests.py
parent5a7427cebb9093387f3f5e202b033db2516f9b30 (diff)
downloadmeson-dirc2.zip
meson-dirc2.tar.gz
meson-dirc2.tar.bz2
One more dircondensation for rc1.dirc2
Diffstat (limited to 'unittests/platformagnostictests.py')
-rw-r--r--unittests/platformagnostictests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/unittests/platformagnostictests.py b/unittests/platformagnostictests.py
index ed5d96b..fc40442 100644
--- a/unittests/platformagnostictests.py
+++ b/unittests/platformagnostictests.py
@@ -35,7 +35,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, '101 relative find program')
+ testdir = os.path.join(self.unit_test_dir, '100 relative find program')
self.init(testdir, workdir=testdir)
def test_invalid_option_names(self):
@@ -71,11 +71,11 @@ class PlatformAgnosticTests(BasePlatformTests):
interp.process(fname)
def test_python_dependency_without_pkgconfig(self):
- testdir = os.path.join(self.unit_test_dir, '103 python without pkgconfig')
+ testdir = os.path.join(self.unit_test_dir, '102 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, '105 debug function')
+ testdir = os.path.join(self.unit_test_dir, '104 debug function')
log_msg = 'This is an example debug output, should only end up in debug log'
output = self.init(testdir)
@@ -88,7 +88,7 @@ class PlatformAgnosticTests(BasePlatformTests):
self.assertIn(log_msg, file.read())
def test_new_subproject_reconfigure(self):
- testdir = os.path.join(self.unit_test_dir, '108 new subproject on reconfigure')
+ testdir = os.path.join(self.unit_test_dir, '107 new subproject on reconfigure')
self.init(testdir)
self.build()