aboutsummaryrefslogtreecommitdiff
path: root/bbot/agent.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bbot/agent.cxx')
-rw-r--r--bbot/agent.cxx9
1 files changed, 8 insertions, 1 deletions
diff --git a/bbot/agent.cxx b/bbot/agent.cxx
index 671f1c0..b2d09d1 100644
--- a/bbot/agent.cxx
+++ b/bbot/agent.cxx
@@ -691,7 +691,14 @@ try
// Parse the result manifest.
//
- r = parse_manifest<result_manifest> (rf, "result");
+ try
+ {
+ r = parse_manifest<result_manifest> (rf, "result", false);
+ }
+ catch (const failed&)
+ {
+ r.status = result_status::abnormal; // Soft-fail below.
+ }
// If the build terminated abnormally, suspent the machine for
// investigation (note that here we don't wait or return).