Skip to content
Snippets Groups Projects
Commit 749bf786 authored by Robert P. Goldman's avatar Robert P. Goldman
Browse files

Modifed check-all-upgrade-results to agree with check-all-test-results.

Previous approach with case statement didn't work on Mac.  Changed to
use grep -L per check-all-test-results.
parent c943a56e
No related branches found
No related tags found
No related merge requests found
......@@ -181,9 +181,7 @@ check-all-test-results:
fi
check-all-upgrade-results:
@A="$$(for i in build/results/*-upgrade.text ; do \
case "$$(tail -1 < $$i)" in "Upgrade test succeeded for "*) ;; \
*) echo $$i ; esac ; done)" ; \
@A="`grep -L 'Upgrade test succeeded for ' build/results/*-upgrade.text`" ; \
if [ -n "$$A" ] ; then \
echo "Unexpected upgrade failures on these implementations:" ; \
echo "$$A" ; \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment