mirror of https://github.com/krallin/tini.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
271 B
14 lines
271 B
9 years ago
|
#!/bin/bash
|
||
|
set -o errexit
|
||
|
set -o nounset
|
||
|
|
||
|
REL_HERE=$(dirname "${BASH_SOURCE}")
|
||
|
HERE=$(cd "${REL_HERE}"; pwd)
|
||
|
|
||
|
for i in $(seq 0 1); do
|
||
|
export FORCE_SUBREAPER="${i}"
|
||
|
echo "Testing with FORCE_SUBREAPER=${FORCE_SUBREAPER}"
|
||
|
"${HERE}/ddist.sh"
|
||
|
"${HERE}/dtest.sh"
|
||
|
done
|