test262/tools/scripts/ci_test.sh

25 lines
553 B
Bash
Executable File

#!/bin/bash
if [ "$CIRCLE_PULL_REQUEST" != "" ]; then
paths=$(git diff --diff-filter ACMR --name-only origin/main.. -- test/)
if [ "$paths" == "" ]; then
echo No test files added or modified. Exiting.
exit 0
fi
echo New or modified test files:
echo "$paths"
echo ""
echo "Running the tests with test262-harness"
test262-harness -t 1 --hostType=$hostType --hostPath=$hostPath --hostArgs="$hostArgs" -- $paths | tee exec.out
if grep -q '^[1-9][0-9]* failed$' exec.out; then
rm exec.out
exit 1
fi
rm exec.out
fi