6877188: some javac shell tests do not work on Windows

Reviewed-by: darcy
This commit is contained in:
Jonathan Gibbons 2009-08-28 14:48:49 -07:00
parent e4158efc0e
commit 45e9a3c1e9
8 changed files with 32 additions and 29 deletions

View file

@ -75,6 +75,11 @@ case "$OS" in
PS=";"
FS="\\"
;;
CYGWIN* )
ENV=""
PS=";" # platform PS, not cygwin PS
FS="/"
;;
* )
echo "Unrecognized system!"
exit 1;