From 949f8cb22733dbec21a607a64d8ce3deb76d5de9 Mon Sep 17 00:00:00 2001 From: Ting-Wei Lan Date: Fri, 4 May 2018 23:01:43 +0800 Subject: [PATCH] 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. --- tests/meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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')