summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Nazar <nazard@nazar.ca>2021-05-01 19:18:15 -0400
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2021-05-10 02:09:10 +0000
commit294ad1d56406492ff17e447ceba0d444565dad9b (patch)
tree5f925d07dce11867bebbad6ba24034f7a030f397
parent4b0e54b1fbdafc22cb9a46fde041a5937dc3461c (diff)
tests: Run ges-launch tests non-interactively
It's not needed for the tests and fixes an occasional issue where the terminal is left in -echo mode. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-editing-services/-/merge_requests/248>
-rw-r--r--tests/check/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/check/meson.build b/tests/check/meson.build
index 8f158245..6cdac7d1 100644
--- a/tests/check/meson.build
+++ b/tests/check/meson.build
@@ -104,10 +104,10 @@ if gstvalidate_dep.found()
if is_validatetest
testfile = meson.current_source_dir() / 'scenarios' / scenario + '.validatetest'
- test(scenario, ges_launch, env: env, args: ['--set-test-file', testfile, '--mute'])
+ test(scenario, ges_launch, env: env, args: ['--no-interactive', '--set-test-file', testfile, '--mute'])
else
scenario_file = meson.current_source_dir() / 'scenarios' / scenario + '.scenario'
- test(scenario, ges_launch, env: env, args: ['--set-scenario', scenario_file])
+ test(scenario, ges_launch, env: env, args: ['--no-interactive', '--set-scenario', scenario_file])
endif
endforeach