diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2022-01-02 13:13:23 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2022-01-02 19:07:36 +0200 |
commit | 117ba230718d20903e91f210e8ae9a79f8c3a473 (patch) | |
tree | 98db5c2080b040315f00cad5eb77252853717d51 /unittests/platformagnostictests.py | |
parent | 4101ca6eaae27c5641532310ff1930d1782f1588 (diff) | |
download | meson-117ba230718d20903e91f210e8ae9a79f8c3a473.zip meson-117ba230718d20903e91f210e8ae9a79f8c3a473.tar.gz meson-117ba230718d20903e91f210e8ae9a79f8c3a473.tar.bz2 |
Condense test directory numbers for rc1.
Diffstat (limited to 'unittests/platformagnostictests.py')
-rw-r--r-- | unittests/platformagnostictests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/platformagnostictests.py b/unittests/platformagnostictests.py index 25f3b1a..c5e5233 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, '99 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,5 +68,5 @@ class PlatformAgnosticTests(BasePlatformTests): interp.process(fname) def test_python_dependency_without_pkgconfig(self): - testdir = os.path.join(self.unit_test_dir, '101 python without pkgconfig') + testdir = os.path.join(self.unit_test_dir, '103 python without pkgconfig') self.init(testdir, override_envvars={'PKG_CONFIG': 'notfound'}) |