aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/test/StandaloneTestStrategy.java2
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/test/TestStrategy.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/test/StandaloneTestStrategy.java b/src/main/java/com/google/devtools/build/lib/rules/test/StandaloneTestStrategy.java
index eb1fde55e0..dc39fbe8fe 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/test/StandaloneTestStrategy.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/test/StandaloneTestStrategy.java
@@ -63,8 +63,6 @@ public class StandaloneTestStrategy extends TestStrategy {
this.workspace = workspace;
}
- private static final String TEST_SETUP_BASENAME = "test-setup.sh";
-
@Override
public void exec(TestRunnerAction action, ActionExecutionContext actionExecutionContext)
throws ExecException, InterruptedException {
diff --git a/src/main/java/com/google/devtools/build/lib/rules/test/TestStrategy.java b/src/main/java/com/google/devtools/build/lib/rules/test/TestStrategy.java
index 329e995ce4..3ed38f6b04 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/test/TestStrategy.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/test/TestStrategy.java
@@ -59,6 +59,8 @@ import javax.annotation.Nullable;
* A strategy for executing a {@link TestRunnerAction}.
*/
public abstract class TestStrategy implements TestActionContext {
+ protected static final String TEST_SETUP_BASENAME = "test-setup.sh";
+
/**
* Returns true if coverage data should be gathered.
*/