summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMilian Wolff <milian.wolff@kdab.com>2020-09-25 13:57:52 +0200
committerMilian Wolff <milian.wolff@kdab.com>2020-09-29 15:43:12 +0000
commit0d969e8e5354514011aa2fccc08d9f820e892c80 (patch)
tree7a83b94757aef57b1854d226867819307487379c /tests
parent0df1430d9448ef78a927fdb77f2b6b576e282aa6 (diff)
Transmit the number of lost events in the LostDefinition4.14
This allows a more detailed report on the GUI side then. Because the count has a quint64 type, we now use a QVariant to store the task event payload. To reduce the padding overhead, the struct is slightly reordered. Change-Id: I01d16da2ba4d3df9f32d6ae53bcff120355eb2c9 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/perfdata/tst_perfdata.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/perfdata/tst_perfdata.cpp b/tests/auto/perfdata/tst_perfdata.cpp
index 208b3ba..5ba08c1 100644
--- a/tests/auto/perfdata/tst_perfdata.cpp
+++ b/tests/auto/perfdata/tst_perfdata.cpp
@@ -156,7 +156,7 @@ void TestPerfData::testTracingData()
QCOMPARE(stats.numBufferFlushes, flushes);
QCOMPARE(stats.numTimeViolatingSamples, 0u);
QCOMPARE(stats.numTimeViolatingMmaps, 0u);
- QCOMPARE(stats.maxBufferSize, 15584u);
+ QCOMPARE(stats.maxBufferSize, 15608u);
QCOMPARE(stats.maxTime, maxTime);
return;
}