aboutsummaryrefslogtreecommitdiff
path: root/build2/test/rule.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/test/rule.cxx')
-rw-r--r--build2/test/rule.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/build2/test/rule.cxx b/build2/test/rule.cxx
index 7148fc0..91a6806 100644
--- a/build2/test/rule.cxx
+++ b/build2/test/rule.cxx
@@ -636,18 +636,18 @@ namespace build2
if (!pe.normal ())
{
- dr << error << "terminated abnormally: ";
+ dr << error;
print_process (dr, args);
+ dr << " terminated abnormally: " << pe.description ();
- dr << info << pe.description ();
if (pe.core ())
dr << " (core dumped)";
}
else
{
- dr << error << "exit status " << static_cast<uint16_t> (pe.code ())
- << ": ";
+ dr << error;
print_process (dr, args);
+ dr << " exited with code " << static_cast<uint16_t> (pe.code ());
}
}