tests: Put eel check and nautilus check under display-test option

Although eel can be split into displayless and display like we did for
other tests, let's make sure we have a working prototype for now.
This commit is contained in:
Carlos Soriano 2018-01-06 01:54:17 +01:00
parent 93bd5ca42e
commit ec3eefcd2e
2 changed files with 12 additions and 8 deletions

View file

@ -58,4 +58,6 @@ check_eel = executable(
]
)
test('check-eel', check_eel)
if get_option('display-tests')
test('check-eel', check_eel)
endif

View file

@ -305,13 +305,15 @@ nautilus = executable(
install: true
)
test(
'nautilus', nautilus,
args: [
'--check',
'--g-fatal-warnings'
]
)
if get_option('display-tests')
test(
'nautilus', nautilus,
args: [
'--check',
'--g-fatal-warnings'
]
)
endif
nautilus_autorun_software_sources = [
'nautilus-autorun-software.c',