summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorRohan McGovern <rohan.mcgovern@nokia.com>2012-04-19 09:43:24 +1000
committerQt by Nokia <qt-info@nokia.com>2012-04-19 01:57:58 +0200
commit1464081dfb68ac4f76be5bcd22e246dfc5f2b438 (patch)
treedc35ea11a73d1f8a40e890ce68a5fd6c6cf2fbeb /tests/auto
parent22042dd769db15cf2b802270a2aee3039bd114d1 (diff)
Really marked tst_QProcess as insignificant on Windows.
This test hangs ~2.6% of the time in CI. The previous commit which attempted to mark this test as insignificant did not work due to this .pro file doing a load(testcase) prior to the line which set CONFIG += insignificant_test. testcase.prf must be loaded _after_ insignificant_test is set. Task-number: QTBUG-25342 Change-Id: I20470337fda8235e2fd0b6e8d5f564c8c57d167e Reviewed-by: Kalle Lehtonen <kalle.ju.lehtonen@nokia.com>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/corelib/io/qprocess/test/test.pro4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/auto/corelib/io/qprocess/test/test.pro b/tests/auto/corelib/io/qprocess/test/test.pro
index 1ea4dc4276..0b8b761a83 100644
--- a/tests/auto/corelib/io/qprocess/test/test.pro
+++ b/tests/auto/corelib/io/qprocess/test/test.pro
@@ -8,6 +8,9 @@ TARGET = ../tst_qprocess
win32:TESTDATA += ../testBatFiles/*
include(../qprocess.pri)
+
+win32:CONFIG += insignificant_test # QTBUG-25342 - sometimes hangs
+
load(testcase) # for target.path and installTestHelperApp()
for(file, SUBPROGRAMS): installTestHelperApp("../$${file}/$${file}",$${file},$${file})
installTestHelperApp("../testProcessSpacesArgs/nospace",testProcessSpacesArgs,nospace)
@@ -15,4 +18,3 @@ installTestHelperApp("../testProcessSpacesArgs/one space",testProcessSpacesArgs,
installTestHelperApp("../testProcessSpacesArgs/two space s",testProcessSpacesArgs,"two space s")
installTestHelperApp("../test Space In Name/testSpaceInName","test Space In Name",testSpaceInName)
-win32:CONFIG += insignificant_test # QTBUG-25342 - sometimes hangs