From 3ab157dc3bea94c9f3e9b72260511ef003589d10 Mon Sep 17 00:00:00 2001 From: David Williams Date: Sat, 2 Jul 2011 09:57:18 +0100 Subject: [PATCH] Took out QBENCHMARK_ONCE as it didn't work on the CDash machine. --- tests/TestAStarPathfinder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestAStarPathfinder.cpp b/tests/TestAStarPathfinder.cpp index 856553ed..6a3184c3 100644 --- a/tests/TestAStarPathfinder.cpp +++ b/tests/TestAStarPathfinder.cpp @@ -85,7 +85,7 @@ void TestAStarPathfinder::testExecute() AStarPathfinder pathfinder(params); //Execute the pathfinder. - QBENCHMARK_ONCE { pathfinder.execute(); } + pathfinder.execute(); //Make sure the right number of steps were created. QCOMPARE(result.size(), static_cast(24));