aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDuarte Meneses <duarte.meneses@sonarsource.com>2016-05-23 16:36:44 +0200
committerDuarte Meneses <duarte.meneses@sonarsource.com>2016-05-23 17:20:13 +0200
commit3ebdf9664f4e74ecdc3494464346fbda09c27d64 (patch)
tree276c3563d2ae13d6babdeb09937cfc148e2dc44e /tests
parent824de62e3f9622fd71d1b278e56b769ce2a70bac (diff)
downloadsonarqube-3ebdf9664f4e74ecdc3494464346fbda09c27d64.tar.gz
sonarqube-3ebdf9664f4e74ecdc3494464346fbda09c27d64.zip
Adjust perf timings
Diffstat (limited to 'tests')
-rw-r--r--tests/perf/src/test/java/org/sonarsource/sonarqube/perf/scanner/suite/MemoryTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/perf/src/test/java/org/sonarsource/sonarqube/perf/scanner/suite/MemoryTest.java b/tests/perf/src/test/java/org/sonarsource/sonarqube/perf/scanner/suite/MemoryTest.java
index ff1a224a4ed..ce903b56590 100644
--- a/tests/perf/src/test/java/org/sonarsource/sonarqube/perf/scanner/suite/MemoryTest.java
+++ b/tests/perf/src/test/java/org/sonarsource/sonarqube/perf/scanner/suite/MemoryTest.java
@@ -89,12 +89,12 @@ public class MemoryTest extends PerfTestCase {
.setProjectDir(baseDir);
BuildResult result = orchestrator.executeBuild(scanner);
- perfRule.assertDurationAround(MavenLogs.extractTotalTime(result.getLogs()), 5360L);
+ perfRule.assertDurationAround(MavenLogs.extractTotalTime(result.getLogs()), 4480L);
// Second execution with a property on server side
orchestrator.getServer().getAdminWsClient().create(new PropertyCreateQuery("sonar.anotherBigProp", Strings.repeat("B", 1000), "big-module-tree"));
result = orchestrator.executeBuild(scanner);
- perfRule.assertDurationAround(MavenLogs.extractTotalTime(result.getLogs()), 5600L);
+ perfRule.assertDurationAround(MavenLogs.extractTotalTime(result.getLogs()), 4420L);
}
private void prepareModule(File parentDir, String moduleName, int depth) throws IOException {