summaryrefslogtreecommitdiffstats
path: root/scripts/qt
diff options
context:
space:
mode:
authorRohan McGovern <rohan.mcgovern@nokia.com>2012-01-12 09:36:24 +1000
committerQt by Nokia <qt-info@nokia.com>2012-01-12 01:04:49 +0100
commit9241c18585be940a53371c3d4af74340b978a64a (patch)
tree3de353ac3a3f47fcd1cbc30377672245d924c296 /scripts/qt
parentbae755609733df6a9db079372c8548f95d8f22ef (diff)
qtmod_test.pl: disable test backtraces by default on mac
Core dumps of crashing Qt tests on mac are unacceptably slow (in the order of tens of minutes). Disable them by default. Change-Id: Ia66be96d3866a6c8db316313990c7b25aec37c3c Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Jyri Tahtela <jyri.tahtela@nokia.com>
Diffstat (limited to 'scripts/qt')
-rwxr-xr-xscripts/qt/qtmod_test.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/qt/qtmod_test.pl b/scripts/qt/qtmod_test.pl
index 3e60ce6d..d0fe0cc9 100755
--- a/scripts/qt/qtmod_test.pl
+++ b/scripts/qt/qtmod_test.pl
@@ -156,8 +156,8 @@ my @PROPERTIES = (
. q{STDOUT/STDERR as normal while the tests are running},
q{qt.tests.backtraces} => q{if 1, attempt to capture backtraces from crashing tests; }
- . q{currently, this requires gdb, and is likely to work only on }
- . q{Linux},
+ . q{currently, this requires gdb, and is known to work on Linux }
+ . q{and Mac, but can be very slow on Mac},
q{qt.tests.flaky_mode} => q{how to handle flaky autotests ("best", "worst" or "ignore")},
@@ -240,7 +240,7 @@ sub default_qt_tests_enabled
sub default_qt_tests_backtraces
{
my ($self) = @_;
- return ($OSNAME =~ m{linux|darwin}i);
+ return ($OSNAME =~ m{linux}i);
}
sub default_qt_qtqa_tests_insignificant