diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-03-28 11:06:33 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-03-28 14:47:55 +0530 |
commit | 31dc38826d3ff6d2953426b708a75f21f1e9dcfc (patch) | |
tree | 844ed7e6faaf36d9356d2c987c3f583bf6b41e25 /run_unittests.py | |
parent | 89c3ee6a358e40888e39e0f346a0b3d4c8dbd357 (diff) | |
download | meson-31dc38826d3ff6d2953426b708a75f21f1e9dcfc.zip meson-31dc38826d3ff6d2953426b708a75f21f1e9dcfc.tar.gz meson-31dc38826d3ff6d2953426b708a75f21f1e9dcfc.tar.bz2 |
unit tests: Skip static library overwrite on Windows
Test is broken due to https://github.com/mesonbuild/meson/issues/1526
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index 1865a52..66f8205 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -554,8 +554,10 @@ class AllPlatformTests(BasePlatformTests): get_fake_options(self.prefix), []) cc = env.detect_c_compiler(False) static_linker = env.detect_static_linker(cc) + if is_windows(): + raise unittest.SkipTest('https://github.com/mesonbuild/meson/issues/1526') if not isinstance(static_linker, mesonbuild.compilers.ArLinker): - raise unittest.SkipTest('static linker is not `ar`') + raise unittest.SkipTest('static linker is not `ar`') # Configure self.init(testdir) # Get name of static library |