aboutsummaryrefslogtreecommitdiff
path: root/build2/test/rule.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-04-26 16:00:48 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-04-26 16:00:48 +0200
commitf3ffef62fa5079a19cb3347837521495bdbe79c4 (patch)
tree34d1491c213326be0bee77ad48b342b2ec3354fa /build2/test/rule.cxx
parent8276cb927bafd338be237adbecf437e70042da99 (diff)
Cleanup error messages
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 ());
}
}