diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2022-03-28 19:33:52 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2022-03-29 02:12:02 +0300 |
commit | 1c3191be55f0445d66ffc6cc7b94ba9837f00784 (patch) | |
tree | 9e0ac18411b3cefd9b02459d725b438044efaae8 /unittests/linuxcrosstests.py | |
parent | 479a84455f6b838e862b7b68b6edd8968dd8fe1c (diff) | |
download | meson-1c3191be55f0445d66ffc6cc7b94ba9837f00784.zip meson-1c3191be55f0445d66ffc6cc7b94ba9837f00784.tar.gz meson-1c3191be55f0445d66ffc6cc7b94ba9837f00784.tar.bz2 |
Condense test directory names.
Diffstat (limited to 'unittests/linuxcrosstests.py')
-rw-r--r-- | unittests/linuxcrosstests.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/unittests/linuxcrosstests.py b/unittests/linuxcrosstests.py index 16f7c24..28bf415 100644 --- a/unittests/linuxcrosstests.py +++ b/unittests/linuxcrosstests.py @@ -86,7 +86,7 @@ class LinuxCrossArmTests(BaseLinuxCrossTests): def test_cross_libdir_subproject(self): # Guard against a regression where calling "subproject" # would reset the value of libdir to its default value. - testdir = os.path.join(self.unit_test_dir, '76 subdir libdir') + testdir = os.path.join(self.unit_test_dir, '75 subdir libdir') self.init(testdir, extra_args=['--libdir=fuf']) for i in self.introspect('--buildoptions'): if i['name'] == 'libdir': @@ -96,7 +96,7 @@ class LinuxCrossArmTests(BaseLinuxCrossTests): def test_std_remains(self): # C_std defined in project options must be in effect also when cross compiling. - testdir = os.path.join(self.unit_test_dir, '51 noncross options') + testdir = os.path.join(self.unit_test_dir, '50 noncross options') self.init(testdir) compdb = self.get_compdb() self.assertRegex(compdb[0]['command'], '-std=c99') @@ -106,7 +106,7 @@ class LinuxCrossArmTests(BaseLinuxCrossTests): def test_pkg_config_option(self): if not shutil.which('arm-linux-gnueabihf-pkg-config'): raise unittest.SkipTest('Cross-pkgconfig not found.') - testdir = os.path.join(self.unit_test_dir, '58 pkg_config_path option') + testdir = os.path.join(self.unit_test_dir, '57 pkg_config_path option') self.init(testdir, extra_args=[ '-Dbuild.pkg_config_path=' + os.path.join(testdir, 'build_extra_path'), '-Dpkg_config_path=' + os.path.join(testdir, 'host_extra_path'), @@ -117,7 +117,7 @@ class LinuxCrossArmTests(BaseLinuxCrossTests): https://github.com/mesonbuild/meson/issues/7997 check run native test in crossbuild without exe wrapper ''' - testdir = os.path.join(self.unit_test_dir, '88 run native test') + testdir = os.path.join(self.unit_test_dir, '87 run native test') stamp_file = os.path.join(self.builddir, 'native_test_has_run.stamp') self.init(testdir) self.build() @@ -185,7 +185,7 @@ class LinuxCrossMingwTests(BaseLinuxCrossTests): @skipIfNoPkgconfig def test_cross_pkg_config_option(self): - testdir = os.path.join(self.unit_test_dir, '58 pkg_config_path option') + testdir = os.path.join(self.unit_test_dir, '57 pkg_config_path option') self.init(testdir, extra_args=[ '-Dbuild.pkg_config_path=' + os.path.join(testdir, 'build_extra_path'), '-Dpkg_config_path=' + os.path.join(testdir, 'host_extra_path'), |