mirror of https://github.com/krallin/tini.git
If we're going to make subreaper support an option, we should ensure that running without subreaper support also works.pull/7/head
parent
fa1f3602a6
commit
4b3075a11d
4 changed files with 45 additions and 10 deletions
@ -0,0 +1,13 @@ |
||||
#!/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 |
Loading…
Reference in new issue