diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-02-18 02:08:45 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-02-22 06:49:34 +0530 |
commit | 04e89d0867e358df347dbc8cb91e6df7bc365d9a (patch) | |
tree | 5a663a931a29bdc8743b1d27534bdd54ce1ac991 /run_unittests.py | |
parent | cbd143844d54694fda90330e0d49c7ac408c532e (diff) | |
download | meson-04e89d0867e358df347dbc8cb91e6df7bc365d9a.zip meson-04e89d0867e358df347dbc8cb91e6df7bc365d9a.tar.gz meson-04e89d0867e358df347dbc8cb91e6df7bc365d9a.tar.bz2 |
symbolextractor: Add support for Cygwin
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/run_unittests.py b/run_unittests.py index 51193f0..af2ca9d 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -1759,7 +1759,7 @@ class BasePlatformTests(unittest.TestCase): @staticmethod def get_target_from_filename(filename): base = os.path.splitext(filename)[0] - if base.startswith('lib'): + if base.startswith(('lib', 'cyg')): return base[3:] return base @@ -2591,8 +2591,6 @@ class AllPlatformTests(BasePlatformTests): Test that no-op changes to the build files such as mtime do not cause a rebuild of anything. ''' - if is_cygwin(): - raise unittest.SkipTest('symbolextractor has not been implemented for Cygwin yet') testdir = os.path.join(self.common_test_dir, '6 linkshared') self.init(testdir) self.build() |