diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-12-07 00:30:28 +0200 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-12-07 00:30:28 +0200 |
| commit | dc1f537fb364833697406e7eb26f9a59d5d1d105 (patch) | |
| tree | b23c7a0c9340afa60f4e65967a352d4ae6d2a420 /test cases | |
| parent | 59fdb1b9ff89e0d5d7073a05f59f161e286975a7 (diff) | |
| download | meson-dc1f537fb364833697406e7eb26f9a59d5d1d105.tar.gz | |
Skip shared module test on VS because it fails for some reason nobody understands.
Diffstat (limited to 'test cases')
| -rw-r--r-- | test cases/common/125 shared module/meson.build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test cases/common/125 shared module/meson.build b/test cases/common/125 shared module/meson.build index 6fd21c2a7..ccb9c1a04 100644 --- a/test cases/common/125 shared module/meson.build +++ b/test cases/common/125 shared module/meson.build @@ -1,5 +1,9 @@ project('shared module', 'c') +if meson.backend().startswith('vs') + error('MESON_SKIP_TEST for some reason /FORCE does not work in the VS backend.') +endif + dl = meson.get_compiler('c').find_library('dl', required : false) l = shared_library('runtime', 'runtime.c') # Do NOT link the module with the runtime library. This |
