aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/cpp/FakeCppCompileAction.java
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2015-07-07 19:20:13 +0000
committerGravatar Han-Wen Nienhuys <hanwen@google.com>2015-07-08 11:41:17 +0000
commitab4a7772d5ede59dbbc705f09d1b518cf7a60cdf (patch)
tree5532baf70f5ba8879407e74d4e9e0bc27259bb4f /src/main/java/com/google/devtools/build/lib/rules/cpp/FakeCppCompileAction.java
parentb39eec54cc3fa3513f82e1fba62eef5844a2980a (diff)
Description redacted.
-- MOS_MIGRATED_REVID=97697160
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/cpp/FakeCppCompileAction.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/cpp/FakeCppCompileAction.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/cpp/FakeCppCompileAction.java b/src/main/java/com/google/devtools/build/lib/rules/cpp/FakeCppCompileAction.java
index a7ed3da2df..e273031a72 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/cpp/FakeCppCompileAction.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/cpp/FakeCppCompileAction.java
@@ -118,7 +118,8 @@ public class FakeCppCompileAction extends CppCompileAction {
reply = context.getReplyFromException(e, this);
if (reply == null) {
// This can only happen if the ExecException does not come from remote execution.
- throw e.toActionExecutionException("", executor.getVerboseFailures(), this);
+ throw e.toActionExecutionException("Fake C++ Compilation of rule '"
+ + getOwner().getLabel() + "'", executor.getVerboseFailures(), this);
}
}
IncludeScanningContext scanningContext = executor.getContext(IncludeScanningContext.class);