mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-06 04:51:33 +00:00
12 lines
167 B
Bash
Executable File
12 lines
167 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
for t in c cpp gcc glibc posix; do
|
|
if ! make -C "$t" test; then
|
|
echo "TEST FAILED: $t"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
echo "ALL TESTS PASSED"
|
|
exit 0
|