summaryrefslogtreecommitdiff
path: root/tests/meson.build
diff options
context:
space:
mode:
authorSeungha Yang <seungha.yang@navercorp.com>2018-12-07 23:39:01 +0900
committerSeungha Yang <seungha.yang@navercorp.com>2018-12-18 22:48:01 +0900
commitf89fc3441ba97b4bebf23ff018a3b5abf12c57cf (patch)
tree46b0513602782b7e293ce15acc3296eb0e92e491 /tests/meson.build
parent43290a9be2adb41392ac3d46f4bd9f997bbe3e6a (diff)
tests: Enable unit test on Windows
Remove hard-coded ':' whitelist separator since it varies with OS
Diffstat (limited to 'tests/meson.build')
-rw-r--r--tests/meson.build6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 1cc032c2..3714641a 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -1,5 +1,3 @@
-if host_machine.system() != 'windows'
- if not get_option('tests').disabled() and gstcheck_dep.found()
- subdir('check')
- endif
+if not get_option('tests').disabled() and gstcheck_dep.found()
+ subdir('check')
endif