aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Ulf Adams <ulfjack@google.com>2017-01-10 11:17:25 +0000
committerGravatar Marcel Hlopko <hlopko@google.com>2017-01-10 11:51:53 +0000
commit4ed99db3fbb6762556ed498d06637ca38d816d63 (patch)
tree5dffcd9f36096927147507f0f57365e7a341ed36 /src
parent5cac04991af35938db0175c7087163109a13b590 (diff)
Expose methods for the undeclared outputs and annotations directories
This is part of a sequence of changes to update the test strategies; most of the actual code changes in this specific change is Google-internal, but I'm planning to update the external test strategies as well. -- PiperOrigin-RevId: 144064802 MOS_MIGRATED_REVID=144064802
Diffstat (limited to 'src')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/test/TestRunnerAction.java8
1 files changed, 8 insertions, 0 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 db3f5839cf..20607f4714 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
@@ -420,6 +420,10 @@ public class TestRunnerAction extends AbstractAction implements NotifyOnActionCa
return splitLogsPath;
}
+ public PathFragment getUndeclaredOutputsDir() {
+ return undeclaredOutputsDir;
+ }
+
/**
* @return path to the optional zip file of undeclared test outputs.
*/
@@ -434,6 +438,10 @@ public class TestRunnerAction extends AbstractAction implements NotifyOnActionCa
return undeclaredOutputsManifestPath;
}
+ public PathFragment getUndeclaredOutputsAnnotationsDir() {
+ return undeclaredOutputsAnnotationsDir;
+ }
+
/**
* @return path to the undeclared output annotations file.
*/