summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorCarlos Soriano <csoriano@gnome.org>2018-01-30 14:29:56 +0100
committerCarlos Soriano <csoriano@gnome.org>2018-01-30 14:39:31 +0100
commitc2da3680a28a7f62b3e76e7955c61a0822fc9e59 (patch)
tree251ec46b99fd680fd9082fc8052a160172e0cc5c /meson_options.txt
parent690d79247fad2f26602e178d3f4050c6f61e23d7 (diff)
downloadnautilus-c2da3680a28a7f62b3e76e7955c61a0822fc9e59.tar.gz
build: Set graphical tests off by default
When nautilus is automatically tests we cannot assume there is a display, if we do and we run inside a displayless scenario nautilus cannot run the application and the tests fail. Graphical tests were enabled by default, but this breaks most common automatic tests scenarios, so let's disable it by default and let the developers enable if required. We should focus more in unit testing and integration tests without an actual display, and let tools like OpenQA, etc. to handle actual display testing. Alternatively we can use Xvfb to simulate a graphical env.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 7db1ca670..aadbdfead 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -3,4 +3,4 @@ option('profiling', type: 'boolean', value: false)
option('nst_extension', type: 'boolean', value: true)
option('packagekit', type: 'boolean', value: true)
option('selinux', type: 'boolean', value: false)
-option('display-tests', type: 'boolean', value: true)
+option('display-tests', type: 'boolean', value: false)