aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test
diff options
context:
space:
mode:
authorGravatar ruperts <ruperts@google.com>2018-08-07 08:08:09 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-08-07 08:09:44 -0700
commit02a6e0f8ac34a4ca44cad6c8b2eba81645da10e4 (patch)
tree11f603225d0a6403285bf2b836057384d6f35df1 /src/test
parent4d8f31f47a92144dad620442bfedf4e772758b7e (diff)
Temporarily disable the CommandUsingProcessWrapperTest system time upper bound check as it is intermittently failing under very heavy load.
RELNOTES: None. PiperOrigin-RevId: 207716645
Diffstat (limited to 'src/test')
-rw-r--r--src/test/java/com/google/devtools/build/lib/shell/ExecutionStatisticsTestUtil.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/shell/ExecutionStatisticsTestUtil.java b/src/test/java/com/google/devtools/build/lib/shell/ExecutionStatisticsTestUtil.java
index ff8344916c..7030e191e3 100644
--- a/src/test/java/com/google/devtools/build/lib/shell/ExecutionStatisticsTestUtil.java
+++ b/src/test/java/com/google/devtools/build/lib/shell/ExecutionStatisticsTestUtil.java
@@ -46,7 +46,9 @@ public class ExecutionStatisticsTestUtil {
Duration userTimeLowerBound = userTimeToSpend;
Duration userTimeUpperBound = userTimeToSpend.plusSeconds(9);
Duration systemTimeLowerBound = systemTimeToSpend;
- Duration systemTimeUpperBound = systemTimeToSpend.plusSeconds(9);
+
+ // TODO(b/110456205) This check fails under very heavy load, investigate why and re-enable it
+ // Duration systemTimeUpperBound = systemTimeToSpend.plusSeconds(9);
Command command = new Command(fullCommandLine.toArray(new String[0]));
CommandResult commandResult = command.execute();
@@ -62,6 +64,8 @@ public class ExecutionStatisticsTestUtil {
Duration systemTime = resourceUsage.get().getSystemExecutionTime();
assertThat(systemTime).isAtLeast(systemTimeLowerBound);
- assertThat(systemTime).isAtMost(systemTimeUpperBound);
+
+ // TODO(b/110456205) This check fails under very heavy load, investigate why and re-enable it
+ // assertThat(systemTime).isAtMost(systemTimeUpperBound);
}
}