test: bail if bsetup fails (#7518)
This commit is contained in:
parent
6b4577ecc4
commit
12e8b0ce21
6
t.sh
6
t.sh
|
@ -3,14 +3,16 @@
|
|||
# Outer wrapper for invoking test.sh inside docker-compose.
|
||||
#
|
||||
|
||||
set -o errexit
|
||||
|
||||
if type realpath >/dev/null 2>&1 ; then
|
||||
cd "$(realpath -- $(dirname -- "$0"))"
|
||||
fi
|
||||
|
||||
# Generate the test keys and certs necessary for the integration tests.
|
||||
docker compose up bsetup
|
||||
docker compose run bsetup
|
||||
|
||||
# Use a predictable name for the container so we can grab the logs later
|
||||
# for use when testing logs analysis tools.
|
||||
docker rm boulder_tests
|
||||
docker rm boulder_tests || true
|
||||
exec docker compose run --name boulder_tests boulder ./test.sh "$@"
|
||||
|
|
6
tn.sh
6
tn.sh
|
@ -3,14 +3,16 @@
|
|||
# Outer wrapper for invoking test.sh with config-next inside docker-compose.
|
||||
#
|
||||
|
||||
set -o errexit
|
||||
|
||||
if type realpath >/dev/null 2>&1 ; then
|
||||
cd "$(realpath -- $(dirname -- "$0"))"
|
||||
fi
|
||||
|
||||
# Generate the test keys and certs necessary for the integration tests.
|
||||
docker compose up bsetup
|
||||
docker compose run bsetup
|
||||
|
||||
# Use a predictable name for the container so we can grab the logs later
|
||||
# for use when testing logs analysis tools.
|
||||
docker rm boulder_tests
|
||||
docker rm boulder_tests || true
|
||||
exec docker compose -f docker-compose.yml -f docker-compose.next.yml run boulder ./test.sh "$@"
|
||||
|
|
Loading…
Reference in New Issue