From 4ed99db3fbb6762556ed498d06637ca38d816d63 Mon Sep 17 00:00:00 2001 From: Ulf Adams Date: Tue, 10 Jan 2017 11:17:25 +0000 Subject: 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 --- .../google/devtools/build/lib/rules/test/TestRunnerAction.java | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src') 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. */ -- cgit v1.2.3