diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2017-08-11 15:52:48 +0200 |
---|---|---|
committer | Janos Gyerik <janos.gyerik@sonarsource.com> | 2017-09-12 10:59:55 +0200 |
commit | 51d27511afe2e90b3843d3f1248a54f06215129b (patch) | |
tree | f7f1ff04f0cedf62541f80807c0cc7b8d25ef036 /tests | |
parent | 0e99d43112e13db1bcd552896f82e4cce0329fc9 (diff) | |
download | sonarqube-51d27511afe2e90b3843d3f1248a54f06215129b.tar.gz sonarqube-51d27511afe2e90b3843d3f1248a54f06215129b.zip |
Adjusting performance tests expectations
Diffstat (limited to 'tests')
-rw-r--r-- | tests/src/test/java/org/sonarqube/tests/performance/scanner/MemoryTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/test/java/org/sonarqube/tests/performance/scanner/MemoryTest.java b/tests/src/test/java/org/sonarqube/tests/performance/scanner/MemoryTest.java index 837d42ebd67..623d18cbc76 100644 --- a/tests/src/test/java/org/sonarqube/tests/performance/scanner/MemoryTest.java +++ b/tests/src/test/java/org/sonarqube/tests/performance/scanner/MemoryTest.java @@ -89,7 +89,7 @@ public class MemoryTest extends AbstractPerfTest { .setProjectDir(baseDir); BuildResult result = orchestrator.executeBuild(scanner); - perfRule.assertDurationAround(MavenLogs.extractTotalTime(result.getLogs()), 6740L); + perfRule.assertDurationAround(MavenLogs.extractTotalTime(result.getLogs()), 7590L); // Second execution with a property on server side orchestrator.getServer().newHttpCall("/api/settings/set") @@ -100,7 +100,7 @@ public class MemoryTest extends AbstractPerfTest { .setParam("component", "big-module-tree") .execute(); result = orchestrator.executeBuild(scanner); - perfRule.assertDurationAround(MavenLogs.extractTotalTime(result.getLogs()), 6720L); + perfRule.assertDurationAround(MavenLogs.extractTotalTime(result.getLogs()), 7742L); } private void prepareModule(File parentDir, String moduleName, int depth) throws IOException { |