aboutsummaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2020-02-17 00:18:36 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2020-02-22 06:49:34 +0530
commitcace70c64eab4c4f5ba5bca7e76e02cab275b025 (patch)
tree4ad9ad439dd95e876a41c721fa3c171b507a7fb9 /run_unittests.py
parent3320e13d91d68f0a4898901c168b3981b76dec41 (diff)
downloadmeson-cace70c64eab4c4f5ba5bca7e76e02cab275b025.zip
meson-cace70c64eab4c4f5ba5bca7e76e02cab275b025.tar.gz
meson-cace70c64eab4c4f5ba5bca7e76e02cab275b025.tar.bz2
symbolextractor: Add a Windows implementation
Supports both MSVC and MinGW toolchains. Checks for MSVC first, then falls back to MinGW.
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py
index 80c7cd0..51193f0 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -2591,6 +2591,8 @@ 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()