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
203 B

#!/bin/bash
set -o errexit
set -o nounset
IMG="tini"
if [[ "$#" != 1 ]]; then
echo "Usage: $0 ARCH_SUFFIX"
exit 1
fi
suffix="$1"
IMG="tini-build-${suffix}"
python test/run_outer_tests.py "${IMG}"