mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 18:00:15 +01:00
20 lines
222 B
Bash
20 lines
222 B
Bash
#!/bin/sh
|
|
|
|
dirs="core bugs"
|
|
|
|
case $1 in
|
|
baseline|verify|clean)
|
|
;;
|
|
*)
|
|
echo "Usage: $0 baseline|verify|clean"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
for i in $dirs; do
|
|
cd $i
|
|
echo $cmd in $i
|
|
../runtests.sh $1
|
|
cd ..
|
|
done
|