We 'set -e' but that is ignored because 'build tests' is executed in a
'&&' list (see 'man set') so move the echo to the following line.
Follow-up to
03ff2146f95
Signed-off-by: Brad Hubbard <bhubbard@redhat.com>
(cherry picked from commit
e70483133db87a3f04bc1fff31d8472465c305b3)
Conflicts:
run-make-check.sh - Trivial change in logging output
cmake_opts+=" -DWITH_SEASTAR=ON"
fi
configure $cmake_opts $@
- build tests && echo "make check: successful run on $(git rev-parse HEAD)"
+ build tests
+ echo "make check: successful build on $(git rev-parse HEAD)"
run
}