mirror of
https://github.com/danog/jit_bugs.git
synced 2024-11-26 12:04:52 +01:00
8 lines
193 B
Bash
Executable File
8 lines
193 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
docker build . -t asan_tests
|
|
|
|
for f in bugs/*; do
|
|
f=$(basename $f)
|
|
docker run -v $PWD/bugs:/app --rm --privileged -it asan_tests /app/$f || echo "!!! $f failed !!!"
|
|
done |