aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/test/TestRunnerAction.java
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2016-09-21 13:21:56 +0000
committerGravatar Laszlo Csomor <laszlocsomor@google.com>2016-09-22 09:51:25 +0000
commitae7be6f016933ca91c2dab3d6c4af785622b2988 (patch)
treeac2e0f677f018e7c7a0510207b985e8d7c93e97d /src/main/java/com/google/devtools/build/lib/rules/test/TestRunnerAction.java
parente5da53c253ca5fafb60a8c1e598d3a147ac08efd (diff)
Replace BuildConfiguration.Fragment#collectExecutables() with a #getShellExecutable() method.
That's all it was used for anyway. -- MOS_MIGRATED_REVID=133824769
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/test/TestRunnerAction.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/test/TestRunnerAction.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/test/TestRunnerAction.java b/src/main/java/com/google/devtools/build/lib/rules/test/TestRunnerAction.java
index 19bfdb339e..db3f5839cf 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/test/TestRunnerAction.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/test/TestRunnerAction.java
@@ -549,7 +549,7 @@ public class TestRunnerAction extends AbstractAction implements NotifyOnActionCa
}
public PathFragment getShExecutable() {
- return configuration.getShExecutable();
+ return configuration.getShellExecutable();
}
public ImmutableMap<String, String> getLocalShellEnvironment() {