Share implementation with github workflow

Signed-off-by: Stefano Rivera <stefano@rivera.za.net>
pull/205/head
Stefano Rivera 3 years ago
parent 26e3f8c52e
commit 24f09bd016

@ -24,21 +24,11 @@ jobs:
printf '#!/bin/sh\n\nexec python "$@"\n' >python3 && printf '#!/bin/sh\n\nexec python "$@"\n' >python3 &&
export PATH=$PWD:$PATH && export PATH=$PWD:$PATH &&
export PYTHONPATH=$PWD &&
export TEST_SHELL_PATH=/bin/sh &&
failed=0 && if ! t/run_tests -q -v -x
cd t &&
for t in t[0-9]*.sh
do
printf '\n\n== %s ==\n' "$t" &&
bash $t -q -v -x ||
failed=$(($failed+1))
done &&
if test 0 != $failed
then then
mkdir ../failed && mkdir failed &&
tar czf ../failed/failed.tar.gz . tar czf failed/failed.tar.gz t
exit 1 exit 1
fi fi
- name: upload failed tests' directories - name: upload failed tests' directories

@ -3,14 +3,25 @@ set -eu
cd $(dirname $0) cd $(dirname $0)
# Put git_filter_repo.py on the front of PYTHONPATH
export PYTHONPATH="$PWD/..${PYTHONPATH:+:$PYTHONPATH}"
# We pretend filenames are unicode for two reasons: (1) because it exercises # We pretend filenames are unicode for two reasons: (1) because it exercises
# more code, and (2) this setting will detect accidental use of unicode strings # more code, and (2) this setting will detect accidental use of unicode strings
# for file/directory names when it should always be bytestrings. # for file/directory names when it should always be bytestrings.
export PRETEND_UNICODE_ARGS=1 export PRETEND_UNICODE_ARGS=1
export TEST_SHELL_PATH=/bin/sh
failed=0 failed=0
for test in t939*.sh; do for t in t[0-9]*.sh
./$test || failed=1 do
printf '\n\n== %s ==\n' "$t"
bash $t "$@" || failed=$(($failed+1))
done done
exit $failed
if [ 0 -lt $failed ]
then
exit 1
fi

Loading…
Cancel
Save