diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-03-29 22:52:14 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-29 22:52:14 +0300 |
commit | 571451b521822aea71b8fe154217fc9a5ecfa005 (patch) | |
tree | fbf680b8ca7e52ce83a55f6fbb71244060e74a57 /run_unittests.py | |
parent | 8cc89e468d4d8cfcafe7afd8884d9884d2aac751 (diff) | |
parent | 87f35d71184722aede59516f31de50411892599b (diff) | |
download | meson-571451b521822aea71b8fe154217fc9a5ecfa005.zip meson-571451b521822aea71b8fe154217fc9a5ecfa005.tar.gz meson-571451b521822aea71b8fe154217fc9a5ecfa005.tar.bz2 |
Merge pull request #1346 from msink/test-mingw
appveyor: run tests against MSYS2-MinGW
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 |