diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-12-18 14:01:32 +0530 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-12-18 12:34:19 +0200 |
commit | e3a529886c014a28cbbbe07ab3003cb4500ebd65 (patch) | |
tree | d2d6d39d4b4ea1a84f6498ec7056e16142955b10 | |
parent | 59b8f11e7e5f19d636c650fea2e81e2c5b61d745 (diff) | |
download | meson-e3a529886c014a28cbbbe07ab3003cb4500ebd65.zip meson-e3a529886c014a28cbbbe07ab3003cb4500ebd65.tar.gz meson-e3a529886c014a28cbbbe07ab3003cb4500ebd65.tar.bz2 |
tests/125 shared module: Run with the VS backend
This was skipped during the PR phase because it was broken, but we fixed
it later.
-rw-r--r-- | test cases/common/125 shared module/meson.build | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test cases/common/125 shared module/meson.build b/test cases/common/125 shared module/meson.build index ccb9c1a..6fd21c2 100644 --- a/test cases/common/125 shared module/meson.build +++ b/test cases/common/125 shared module/meson.build @@ -1,9 +1,5 @@ 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 |