summaryrefslogtreecommitdiffstats
path: root/scripts/qt
diff options
context:
space:
mode:
authorRohan McGovern <rohan.mcgovern@nokia.com>2012-04-27 13:30:13 +1000
committerQt by Nokia <qt-info@nokia.com>2012-04-30 00:41:00 +0200
commitd54b128501df26b5b49e26d77e0096cac6cc91a1 (patch)
treeb32ffcd02a3f1f0110d95bf4ec52255d12fdcc5c /scripts/qt
parent4ede0e2a3c9ae9c5371c408e784785495f94a457 (diff)
Omit testscheduler summary when running qtqa tests.
The qtqa test sets are small (e.g. there is only one prebuild test), so the summary is redundant and possibly confusing. It's easier to understand the test logs if there is only one summary - the summary from the main test run. Change-Id: Ifb80d31a54df0eca9f978c90b642ed8e7ce43533 Reviewed-by: Kalle Lehtonen <kalle.ju.lehtonen@nokia.com> Reviewed-by: Toby Tomkins <toby.tomkins@nokia.com>
Diffstat (limited to 'scripts/qt')
-rwxr-xr-xscripts/qt/qtmod_test.pl4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/qt/qtmod_test.pl b/scripts/qt/qtmod_test.pl
index 2bd26588..6a8fd10b 100755
--- a/scripts/qt/qtmod_test.pl
+++ b/scripts/qt/qtmod_test.pl
@@ -1323,6 +1323,9 @@ sub run_qtqa_autotests
# Only need to `qmake', `make' the tests the first time.
do_compile => !$compiled_qtqa_tests,
+
+ # Testscheduler summary is not useful for qtqa tests
+ testscheduler_args => [ '--no-summary' ],
);
$compiled_qtqa_tests = 1;
@@ -1407,6 +1410,7 @@ sub _run_autotests_impl
catfile( "$FindBin::Bin/../generic/testscheduler.pl" ),
'--plan',
'testplan.txt',
+ @{ $args{ testscheduler_args } || []},
split( m{ }, $qt_tests_testscheduler_args ),
@testrunner_args,
);