This commit is contained in:
Daniil Gentili 2023-10-23 22:27:16 +02:00
parent 76c9c98e0a
commit af461a3690
3 changed files with 2 additions and 4 deletions

View File

@ -18,7 +18,7 @@ cp $standalone .
echo "About to run the standalone test"
docker run -v $PWD:/app --rm --privileged -it asan_tests /usr/bin/php /app/2_infection.php
docker run -v $PWD:/app --rm --privileged -it asan_tests /usr/bin/php /app/1_infection.php
echo "About to run the testsuite"

View File

@ -2,7 +2,6 @@ memory_limit = -1
zend.assertions = 1
display_errors = On
display_startup_errors = On
extension=mbstring
[opcache]
zend_extension=opcache
opcache.memory_consumption=4096M

3
run.sh
View File

@ -3,6 +3,5 @@
docker build . -t asan_tests
for f in bugs/*sh; do
f=$(basename $f)
docker run -v $PWD/bugs:/app --rm --privileged -it asan_tests /app/$f || echo "!!! $f failed !!!"
$f || echo "!!! $f failed !!!"
done