diff scripts/testfun/runtests.m @ 24483:dac2ad033c43

use same wording and order for individual test results and summary * __run_test_suite__.m, runtests.m: Use SKIP instead of SKIPPED and same order for printing number of failed and skipped tests.
author John W. Eaton <jwe@octave.org>
date Thu, 28 Dec 2017 10:17:01 -0500
parents 04d1a3ea26a3
children 194eb4bd202b
line wrap: on
line diff
--- a/scripts/testfun/runtests.m	Wed Dec 27 22:04:38 2017 -0800
+++ b/scripts/testfun/runtests.m	Thu Dec 28 10:17:01 2017 -0500
@@ -149,18 +149,18 @@
     if (rgrs > 0)
       printf ("\n%71s %3d", "REGRESSION", rgrs);
     endif
-    if (sk > 0)
-      printf ("\n%71s %3d", "(missing feature) SKIP ", sk);
-    endif
-    if (rtsk > 0)
-      printf ("\n%71s %3d", "(run-time condition) SKIP ", rtsk);
-    endif
     if (xb > 0)
       printf ("\n%71s %3d", "(reported bug) XFAIL", xb);
     endif
     if (xf > 0)
       printf ("\n%71s %3d", "(expected failure) XFAIL", xf);
     endif
+    if (sk > 0)
+      printf ("\n%71s %3d", "(missing feature) SKIP", sk);
+    endif
+    if (rtsk > 0)
+      printf ("\n%71s %3d", "(run-time condition) SKIP", rtsk);
+    endif
   endif
   puts ("\n");