From 4843ce463352e3c32fe9c4c35c383029977c8ed6 Mon Sep 17 00:00:00 2001 From: Kevin Ottens Date: Thu, 3 Jan 2013 15:28:14 +0100 Subject: [PATCH] Set the threshold of copyPerformance to 200ms... Note that this test is kind of odd, clearly YMMV but if you run this test under load it will randomly fail. Kind of flacky for an automated test. --- tests/packagestructuretest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/packagestructuretest.cpp b/tests/packagestructuretest.cpp index cc5f8e9eb..834dcd58f 100644 --- a/tests/packagestructuretest.cpp +++ b/tests/packagestructuretest.cpp @@ -62,7 +62,7 @@ void PackageStructureTest::copyPerformance() const QString bar = foo.filePath("mainscript"); } - QVERIFY(t.elapsed() < 100); + QVERIFY(t.elapsed() < 200); } void PackageStructureTest::emptyContentsPrefix()