aboutsummaryrefslogtreecommitdiff
path: root/build2
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-04-26 16:42:33 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-04-26 16:43:56 +0300
commit2fd9d3f177429b20797897360931badedbb0f0ef (patch)
tree4491ac257088da1ee19a1d71ab321e0a722e36e1 /build2
parentf6e6cfc3b5c7c84dedddc95084c423608769d4b7 (diff)
Print diff failure reason
Diffstat (limited to 'build2')
-rw-r--r--build2/test/rule.cxx32
-rw-r--r--build2/test/script/runner.cxx28
2 files changed, 55 insertions, 5 deletions
diff --git a/build2/test/rule.cxx b/build2/test/rule.cxx
index da6b2f3..7148fc0 100644
--- a/build2/test/rule.cxx
+++ b/build2/test/rule.cxx
@@ -589,7 +589,8 @@ namespace build2
// Redirect stdout to a pipe unless we are last.
//
int out (*next != nullptr ? -1 : 1);
- bool pr, wr;
+ bool pr;
+ process_exit pe;
try
{
@@ -599,7 +600,10 @@ namespace build2
//
process p (args, 0, out);
pr = *next == nullptr || run_test (t, dr, next, &p);
- wr = p.wait ();
+ p.wait ();
+
+ assert (p.exit);
+ pe = *p.exit;
}
else
{
@@ -607,7 +611,10 @@ namespace build2
//
process p (args, *prev, out);
pr = *next == nullptr || run_test (t, dr, next, &p);
- wr = p.wait ();
+ p.wait ();
+
+ assert (p.exit);
+ pe = *p.exit;
}
}
catch (const process_error& e)
@@ -620,13 +627,28 @@ namespace build2
throw failed ();
}
+ bool wr (pe.normal () && pe.code () == 0);
+
if (!wr)
{
if (pr) // First failure?
dr << fail << "test " << t << " failed"; // Multi test: test 1.
- dr << error << "non-zero exit status: ";
- print_process (dr, args);
+ if (!pe.normal ())
+ {
+ dr << error << "terminated abnormally: ";
+ print_process (dr, args);
+
+ dr << info << pe.description ();
+ if (pe.core ())
+ dr << " (core dumped)";
+ }
+ else
+ {
+ dr << error << "exit status " << static_cast<uint16_t> (pe.code ())
+ << ": ";
+ print_process (dr, args);
+ }
}
return pr && wr;
diff --git a/build2/test/script/runner.cxx b/build2/test/script/runner.cxx
index 4136953..e01f621 100644
--- a/build2/test/script/runner.cxx
+++ b/build2/test/script/runner.cxx
@@ -334,6 +334,34 @@ namespace build2
if (p.wait ())
return true;
+ assert (p.exit);
+ const process_exit& pe (*p.exit);
+
+ // Note that both POSIX and GNU diff utilities report error
+ // exiting with the code > 1.
+ //
+ if (!pe.normal () || pe.code () > 1)
+ {
+ diag_record d (fail (ll));
+
+ if (!pe.normal ())
+ {
+ d << pp << " terminated abnormally: ";
+ print_process (d, args);
+
+ d << info << pe.description ();
+ if (pe.core ())
+ d << " (core dumped)";
+ }
+ else
+ {
+ d << pp << " exit status "
+ << static_cast<uint16_t> (pe.code ()) << ": ";
+
+ print_process (d, args);
+ }
+ }
+
// Output doesn't match the expected result.
//
if (diag)