Changeset: 05a4867530fd for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=05a4867530fd
Modified Files:
        testing/Mz.py.in
Branch: mtest
Log Message:

print skip tests when verbose selected


diffs (17 lines):

diff --git a/testing/Mz.py.in b/testing/Mz.py.in
--- a/testing/Mz.py.in
+++ b/testing/Mz.py.in
@@ -2845,9 +2845,10 @@ def main(argv) :
             print()
             print('failed={}, skipped={}'.format(failed, skipped))
             print('Ran {} test in {:7.3f}'.format(test_count - skipped, t_))
-            for TSTDIR, TST, reason in SKIPPED_TESTS:
-                prpurple('SKIP\t')
-                print('{} {} {}'.format(TSTDIR, TST, reason))
+            if verbose:
+                for TSTDIR, TST, reason in SKIPPED_TESTS:
+                    prpurple('SKIP\t')
+                    print('{} {} {}'.format(TSTDIR, TST, reason))
 
     finally:
         # cleanup the place where we put our UNIX sockets
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to