aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/exec
diff options
context:
space:
mode:
authorGravatar Klaus Aehlig <aehlig@google.com>2017-07-13 13:22:44 +0200
committerGravatar László Csomor <laszlocsomor@google.com>2017-07-14 10:49:59 +0200
commitce1c36d5e1865cb033c7da338b3fbe643e145e55 (patch)
tree15a4856bf023542ffba0300d79547edaf489dda2 /src/test/java/com/google/devtools/build/lib/exec
parent34bf0c6e3a7f07679ff29f983c348e2e88a96591 (diff)
BEP: Report configuration for all actions
Whenever we report an action in the build event protocol that has a configuration associated with it, report the configuration as well in the protocol (and not only the checksum, if the configuration is not that of one of the top-level configured targets). Change-Id: I9b085d5381b3c3509b4f3b99c8a77bc8fba6abfe PiperOrigin-RevId: 161789745
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/exec')
-rw-r--r--src/test/java/com/google/devtools/build/lib/exec/util/FakeOwner.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/exec/util/FakeOwner.java b/src/test/java/com/google/devtools/build/lib/exec/util/FakeOwner.java
index 20ec2b5af9..cf17e08f2e 100644
--- a/src/test/java/com/google/devtools/build/lib/exec/util/FakeOwner.java
+++ b/src/test/java/com/google/devtools/build/lib/exec/util/FakeOwner.java
@@ -52,6 +52,7 @@ public final class FakeOwner implements ActionExecutionMetadata {
mnemonic,
/*targetKind=*/ null,
"configurationChecksum",
+ /* configuration=*/ null,
"additionalProgressInfo");
}
@@ -150,4 +151,4 @@ public final class FakeOwner implements ActionExecutionMetadata {
public boolean shouldReportPathPrefixConflict(ActionAnalysisMetadata action) {
throw new UnsupportedOperationException();
}
-} \ No newline at end of file
+}