Skip to content
Snippets Groups Projects

CI: Extend integration testing

Merged Caleb Connolly requested to merge caleb/moar-testing into master
Compare and Show latest version
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
#!/bin/sh -e
echo "\$@:" "$@"
if [ "$(id -u)" = 0 ]; then
exec su "${TESTUSER:-build}" -c "sh -ec $0 $*"
fi
test="$(basename "$0")"
echo "\$@:" "$@"
usage() {
echo "Usage: $test $1"
exit 1
Loading