summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2019-01-18 18:30:38 +0100
committerRobert Loehning <robert.loehning@qt.io>2019-02-04 13:14:24 +0000
commita7bbcb8e398aaeafca72a3646ed4f20574f856af (patch)
tree4d3d39f22e7018361ad0bb14968dec9ccefec1bb
parentffa14187a1a6876cabe14a19513462117de68594 (diff)
downloadqt-creator-a7bbcb8e398aaeafca72a3646ed4f20574f856af.tar.gz
Squish: Stabilize tst_simple_analyze
The total time may be more than 1s when the CPU is busy. Ignoring this column. Change-Id: I9c80fecb618bcad1bc3e7922c5a573964cd019a4 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
-rw-r--r--tests/system/suite_debugger/tst_simple_analyze/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/suite_debugger/tst_simple_analyze/test.py b/tests/system/suite_debugger/tst_simple_analyze/test.py
index 202c5053b2..111336e33a 100644
--- a/tests/system/suite_debugger/tst_simple_analyze/test.py
+++ b/tests/system/suite_debugger/tst_simple_analyze/test.py
@@ -103,7 +103,7 @@ def performTest(workingDir, projectName, availableConfigs):
compareEventsTab(model, "events_qt%s.tsv" % qtVersion)
test.compare(dumpItems(model, column=colPercent)[0], '100 %')
# cannot run following test on colShortest (unstable)
- for i in [colTotal, colMean, colMedian, colLongest]:
+ for i in [colMean, colMedian, colLongest]:
for item in dumpItems(model, column=i)[2:5]:
test.verify(item.endswith('ms'), "Verify that '%s' ends with 'ms'" % item)
for i in [colTotal, colMean, colMedian, colLongest, colShortest]: