summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw@src.gnome.org>2018-05-04 23:01:43 +0800
committerTing-Wei Lan <lantw@src.gnome.org>2018-05-10 21:31:08 +0800
commit8fa3ede92522dcb656317501d1843ef203fe378e (patch)
treeb2389005c0884295f538b583e10a5fc5114bbe60
parent1d26f63b18f54e2d354d64ec8b312c70b35a2808 (diff)
downloadgnome-control-center-wip/lantw/disable-network-test-on-non-linux.tar.gz
tests/network: Disable on non-Linux systemswip/lantw/disable-network-test-on-non-linux
NetworkManager is only available on Linux, so we cannot build or run the network test on non-Linux systems.
-rw-r--r--tests/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 41adee9e1..33b460148 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -1,5 +1,7 @@
subdir('common')
subdir('datetime')
-subdir('network')
+if host_is_linux
+ subdir('network')
+endif
subdir('printers')
subdir('info')