aboutsummaryrefslogtreecommitdiff
path: root/unittests/platformagnostictests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2022-10-24 01:00:57 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2022-10-25 00:03:32 +0300
commit458dcf8aac74903380c2adceb2b16a87f231b42b (patch)
treeb84536ec74c1eb4131282f4a4caecbbe644c8def /unittests/platformagnostictests.py
parent1a1aad317f71731d8440f695d29bc12c28011de2 (diff)
downloadmeson-458dcf8aac74903380c2adceb2b16a87f231b42b.zip
meson-458dcf8aac74903380c2adceb2b16a87f231b42b.tar.gz
meson-458dcf8aac74903380c2adceb2b16a87f231b42b.tar.bz2
Condense test directory numbers.
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()