jit_bugs/run.sh

10 lines
166 B
Bash
Raw Normal View History

2023-10-23 21:59:18 +02:00
#!/bin/bash -e
docker build . -t asan_tests
2023-10-24 17:50:54 +02:00
composer update
2023-10-23 22:10:11 +02:00
for f in bugs/*sh; do
2023-10-23 22:37:56 +02:00
echo "!!! About to run $f !!!"
$f || echo "!!! Failed to run $f !!!"
2023-10-23 21:59:18 +02:00
done