mirror of
https://github.com/danog/jit_bugs.git
synced 2024-11-29 20:29:07 +01:00
7 lines
107 B
Bash
Executable File
7 lines
107 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
docker build . -t asan_tests
|
|
|
|
for f in bugs/*sh; do
|
|
$f || echo "!!! $f failed !!!"
|
|
done |