aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/test/StandaloneTestStrategy.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/test/StandaloneTestStrategy.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/test/StandaloneTestStrategy.java5
1 files changed, 2 insertions, 3 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 d80fff8caf..a474521544 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
@@ -70,9 +70,8 @@ public class StandaloneTestStrategy extends TestStrategy {
throws ExecException, InterruptedException {
Path runfilesDir = null;
try {
- runfilesDir =
- TestStrategy.getLocalRunfilesDirectory(
- action, actionExecutionContext, binTools, action.getShExecutable());
+ runfilesDir = TestStrategy.getLocalRunfilesDirectory(action, actionExecutionContext, binTools,
+ action.getShExecutable(), action.getLocalShellEnvironment());
} catch (ExecException e) {
throw new TestExecException(e.getMessage());
}