reduced sensitivity of test on weak build hosts

This commit is contained in:
Jonathan Shook 2020-03-16 23:42:22 -05:00
parent 1e6876145f
commit db701cc573
2 changed files with 3 additions and 3 deletions

View File

@ -230,7 +230,7 @@ public class AsyncScriptIntegrationTests {
assertThat(scenarioResult.getIOLog()).contains("step2 metrics.waittime=");
String iolog = scenarioResult.getIOLog();
System.out.println(iolog);
assertThat(iolog).contains("waittime trended back down as expected");
assertThat(iolog).contains("waittime trended back down as expected")
}
@Test
@ -267,4 +267,4 @@ public class AsyncScriptIntegrationTests {
);
}
}
}

View File

@ -55,7 +55,7 @@ for (i = 0; i < 10; i++) {
);
scenario.waitMillis(1000);
if (metrics.co_cycle_delay.cycles.waittime.value < 10000000) {
if (metrics.co_cycle_delay.cycles.waittime.value < 50000000) {
print("waittime trended back down as expected, exiting on iteration " + i);
break;
}