git-lfs/script/integration

62 lines
1.1 KiB
Plaintext
Raw Normal View History

2015-07-30 02:37:31 +00:00
#!/usr/bin/env bash
. "test/testenv.sh"
2015-05-19 01:09:32 +00:00
set -e
SHUTDOWN_LFS=no
SHOW_LOGS=yes
TESTS=( "$@" )
atexit() {
2015-05-19 01:09:32 +00:00
res=${1:-$?}
SHUTDOWN_LFS=yes
if [ "$res" = "0" ]; then
SHOW_LOGS=no
fi
if [ "$SHOW_LOGS" = "yes" ] && [ "$VERBOSE_LOGS" = "1" ]; then
if [ -s "$REMOTEDIR/gitserver.log" ]; then
echo ""
echo "gitserver.log:"
cat "$REMOTEDIR/gitserver.log"
fi
echo ""
echo "env:"
env
fi
shutdown
2015-05-19 01:09:32 +00:00
exit $res
}
trap "atexit" EXIT
if [ -s "$LFS_URL_FILE" ]; then
SHOW_LOGS=no
echo "$LFS_URL_FILE still exists!"
2015-05-19 00:12:17 +00:00
echo "Confirm other tests are done, and run:"
echo " $ curl $(cat "$LFS_URL_FILE")/shutdown"
exit 1
fi
setup
2015-05-21 21:01:44 +00:00
parallel=${GIT_LFS_TEST_MAXPROCS:-4}
echo "Running this maxprocs=$parallel"
echo
2015-05-21 21:01:44 +00:00
if [ ${#TESTS[@]} -eq 0 ]
then
testfiles=(test/test-*.sh)
else
for ((i=0; i<${#TESTS[@]}; i++)); do
testfiles[i]=test/test-${TESTS[i]}.sh
done
fi
for file in "${testfiles[@]}"; do
2015-05-19 01:09:32 +00:00
echo "0$(cat .$(basename $file).time 2>/dev/null || true) $file"
2015-05-21 21:01:44 +00:00
done | sort -rnk1 | awk '{ print $2 }' | xargs -I % -P $parallel -n 1 /bin/sh -c % --batch