remove obselete cross-shell-tests helper

This commit is contained in:
Thomas Levine 2016-02-29 04:12:07 +00:00
parent 44d4446be0
commit 0e7331d1d4
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
#!/bin/sh
# Run urchin in a bunch of different shells,
# including a shell that isn't quite POSIX-compatible (zsh)
for shell in dash bash mksh ksh zsh; do
if which $shell > /dev/null 2> /dev/null; then
echo
echo Running urchin tests in $shell
$shell urchin -s $shell tests | tail -n 4
else
echo
echo Skipping $shell because it is not in the PATH
fi
done
echo