summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw@src.gnome.org>2018-05-04 23:01:43 +0800
committerGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2018-05-12 04:03:45 +0000
commit949f8cb22733dbec21a607a64d8ce3deb76d5de9 (patch)
tree9c8750a7953e7e4cd3b112ac34b97d3438939154
parentffcd5b15f2e62aae7d6bf5acb6b6610dd9ec2e43 (diff)
downloadgnome-control-center-949f8cb22733dbec21a607a64d8ce3deb76d5de9.tar.gz
tests/network: Disable on non-Linux systems
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')