mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
20 lines
222 B
Bash
Executable File
20 lines
222 B
Bash
Executable File
#!/bin/sh
|
|
|
|
dirs="base 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
|