diff --git a/test/conformance/conformance_test.sh b/test/conformance/conformance_test.sh index b0e5eb1cd86..04113c09b6e 100755 --- a/test/conformance/conformance_test.sh +++ b/test/conformance/conformance_test.sh @@ -21,5 +21,9 @@ set -o errexit -diff -u test/conformance/testdata/conformance.txt test/conformance/conformance.txt -echo PASS +if diff -u test/conformance/testdata/conformance.txt test/conformance/conformance.txt; then + echo PASS + exit 0 +fi +echo 'See instructions in test/conformance/README.md' +exit 1