aboutsummaryrefslogtreecommitdiff
path: root/unittests/platformagnostictests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2022-07-06 23:18:58 +0300
committerDylan Baker <dylan@pnwbakers.com>2022-07-07 10:04:51 -0700
commitbefd26985c87ccae93523d336057173b9530da2b (patch)
tree11d3b4eaaeeeddc5274a199bf37df1078accaeab /unittests/platformagnostictests.py
parent11f76c2fc732dd4d827329d088d0e6587ef3ce12 (diff)
downloadmeson-befd26985c87ccae93523d336057173b9530da2b.zip
meson-befd26985c87ccae93523d336057173b9530da2b.tar.gz
meson-befd26985c87ccae93523d336057173b9530da2b.tar.bz2
Fix test case 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 4b99b2f..a2d6640 100644
--- a/unittests/platformagnostictests.py
+++ b/unittests/platformagnostictests.py
@@ -32,7 +32,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):
@@ -68,11 +68,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)
@@ -85,7 +85,7 @@ class PlatformAgnosticTests(BasePlatformTests):
self.assertIn(log_msg, file.read())
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()