aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools
diff options
context:
space:
mode:
authorGravatar ruperts <ruperts@google.com>2017-10-04 05:12:03 +0200
committerGravatar Klaus Aehlig <aehlig@google.com>2017-10-06 19:43:27 +0200
commit00743496621ab1cf8ed2e3dac4b12f982b9e4b04 (patch)
tree478a244bdba867040f0ca82fcf7167bfb64bdbdb /src/main/java/com/google/devtools
parentb6f24406bd67a8e4a94c7f1f8854c0f0f49d3d72 (diff)
Fix more linter errors
RELNOTES: None. PiperOrigin-RevId: 170955877
Diffstat (limited to 'src/main/java/com/google/devtools')
-rw-r--r--src/main/java/com/google/devtools/build/lib/exec/TestStrategy.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/exec/TestStrategy.java b/src/main/java/com/google/devtools/build/lib/exec/TestStrategy.java
index 445326abb6..56bde845bc 100644
--- a/src/main/java/com/google/devtools/build/lib/exec/TestStrategy.java
+++ b/src/main/java/com/google/devtools/build/lib/exec/TestStrategy.java
@@ -102,6 +102,7 @@ public abstract class TestStrategy implements TestActionContext {
}
}
+ /** An enum for specifying different formats of test output. */
public enum TestOutputFormat {
SUMMARY, // Provide summary output only.
ERRORS, // Print output from failed tests to the stderr after the test failure.
@@ -116,6 +117,7 @@ public abstract class TestStrategy implements TestActionContext {
}
}
+ /** An enum for specifying different formatting styles of test summaries. */
public enum TestSummaryFormat {
SHORT, // Print information only about tests.
TERSE, // Like "SHORT", but even shorter: Do not print PASSED and NO STATUS tests.