aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules
diff options
context:
space:
mode:
authorGravatar Philipp Wollermann <philwo@google.com>2016-06-28 19:16:19 +0000
committerGravatar Dmitry Lomov <dslomov@google.com>2016-06-29 08:54:42 +0000
commit2407d7ac2dfe21fa25ae76934e3013d2df170e34 (patch)
tree15e1e195465827c3755b33ec1480a60a4f33d0ab /src/main/java/com/google/devtools/build/lib/rules
parentd8372d22c72aa62a7dcb3e63720b2c29396c38cd (diff)
Rename FileOutErr.get{Output,Error}File to get{Output,Error}Path, because they actually return a Path and not a File.
-- MOS_MIGRATED_REVID=126102820
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/test/StandaloneTestStrategy.java2
1 files changed, 1 insertions, 1 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 2dd01c3bcd..7df123a52b 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
@@ -139,7 +139,7 @@ public class StandaloneTestStrategy extends TestStrategy {
ResourceHandle handle = ResourceManager.instance().acquireResources(action, resources)) {
TestResultData data =
execute(actionExecutionContext.withFileOutErr(fileOutErr), spawn, action);
- appendStderr(fileOutErr.getOutputFile(), fileOutErr.getErrorFile());
+ appendStderr(fileOutErr.getOutputPath(), fileOutErr.getErrorPath());
finalizeTest(actionExecutionContext, action, data);
}
} catch (IOException e) {