diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 8ce2f934bda..6606b1df6dc 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,8 @@ +2018-10-25 Thomas Preud'homme + + * dg-cmp-results.sh: Print NA-FAIL and NA->UNRESOLVED changes at + default verbosity. + 2018-10-16 Rainer Orth * config-list.mk (LIST): Switch to i686-solaris2.11, diff --git a/contrib/dg-cmp-results.sh b/contrib/dg-cmp-results.sh index 821d557a168..eb976f68f4a 100755 --- a/contrib/dg-cmp-results.sh +++ b/contrib/dg-cmp-results.sh @@ -137,8 +137,11 @@ function drop() { function compare(st, nm) { old = peek() if (old == 0) { - # This new test wasn't run last time. - if (verbose >= 2) printf("NA->%s:%s\n", st, nm) + # This new test wasn't run last time. + if(st == "FAIL" || st == "UNRESOLVED" || verbose >= 2) { + # New test fails or we want all changes + printf("NA->%s:%s\n", st, nm) + } } else { # Compare this new test to the first queued old one.