changeset 27348:237b0bd20658

attempt to make test failures more visible * __run_test_suite__.m: Use "pass" for passing tests and FAIL, XFAIL, etc. for failing tests to make it easier to find failing tests in the summary.
author John W. Eaton <jwe@octave.org>
date Tue, 20 Aug 2019 19:09:32 -0400
parents 1807acfe2150
children 8aa544cc2e17
files scripts/testfun/__run_test_suite__.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/testfun/__run_test_suite__.m	Tue Aug 20 17:05:23 2019 +0200
+++ b/scripts/testfun/__run_test_suite__.m	Tue Aug 20 19:09:32 2019 -0400
@@ -226,7 +226,7 @@
 function print_pass_fail (p, n, xf, xb, sk, rtsk, rgrs)
 
   if ((n + sk + rtsk + rgrs) > 0)
-    printf (" PASS %4d/%-4d", p, n);
+    printf (" pass %4d/%-4d", p, n);
     nfail = n - p - xf - xb - rgrs;
     if (nfail > 0)
       printf ("\n%72s %3d", "FAIL ", nfail);