i-bash/tests/run-all
2009-09-12 16:46:49 +00:00

17 lines
260 B
Bash
Executable file

#! /bin/sh
PATH=.:$PATH # just to get the right version of printenv
export PATH
unset ENV
echo Any output from any test indicates an anomaly worth investigating
for x in run-*
do
case $x in
$0) ;;
*.orig|*~) ;;
*) echo $x ; sh $x ;;
esac
done
exit 0