diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2015-05-19 Siddhesh Poyarekar <siddhesh@redhat.com> + * Makefile (summarize-tests): Fix return value on success. + * manual/string.texi (Envz Functions): Add envz_remove. 2015-05-18 Roland McGrath <roland@hack.frob.com> @@ -320,7 +320,7 @@ define summarize-tests @egrep -v '^(PASS|XFAIL):' $(objpfx)$1 || true @echo "Summary of test results$2:" @sed 's/:.*//' < $(objpfx)$1 | sort | uniq -c -@egrep -q -v '^(X?PASS|XFAIL|UNSUPPORTED):' $(objpfx)$1 && false +@! egrep -q -v '^(X?PASS|XFAIL|UNSUPPORTED):' $(objpfx)$1 endef tests-special-notdir = $(patsubst $(objpfx)%, %, $(tests-special)) |