jit_bugs/bugs/4_infection.sh
2023-10-24 17:50:54 +02:00

47 lines
1000 B
Bash
Executable File

#!/bin/bash -e
wrap=$PWD/bugs/wrap.php
standalone=$PWD/bugs/infection.php
refactor=$PWD/refactor.php
cd /tmp
rm -rf infection
git clone https://github.com/infection/infection -b 0.27.4
cd infection
composer i --ignore-platform-reqs
php $refactor
cp $standalone .
cp $wrap .
echo "About to run the standalone test"
EXIT_CODE=0
docker run -v $PWD:/app --rm --privileged -it asan_tests /usr/bin/php /app/wrap.php /app/infection.php || EXIT_CODE=$?
if [ $EXIT_CODE -ne 0 ]; then
echo "Failed, exit code $EXIT_CODE"
exit $EXIT_CODE
fi
echo "About to run the testsuite"
EXIT_CODE=0
docker run -v $PWD:/app --rm --privileged -it asan_tests /usr/bin/php --repeat 2 -f /app/wrap.php vendor/bin/phpunit || EXIT_CODE=$?
if [ $EXIT_CODE -gt 128 ]; then
echo "Failed, exit code $EXIT_CODE"
exit $EXIT_CODE
fi
echo "About to run composer"
rm -rf vendor
docker run -v $PWD:/app --rm --privileged -it asan_tests /usr/bin/php /app/wrap.php /usr/bin/composer update
echo "OK, no bugs!"