SCM Repository
View of /sml/trunk/tests/bin/doallseq.sh
Parent Directory
|
Revision Log
Revision 548 -
(download)
(as text)
(annotate)
Tue Feb 29 16:38:11 2000 UTC (21 years, 1 month ago) by dbm
File size: 729 byte(s)
Tue Feb 29 16:38:11 2000 UTC (21 years, 1 month ago) by dbm
File size: 729 byte(s)
Initial revision
#! /bin/ksh CMD=${0##*/}\> SMLX=${SML:-"/usr/local/sml/bin/sml"} function printUsage { echo -u2 "doallseq.sh" echo -u2 " [-sml <executable> default=value of \$SML or $SMLX]" echo -u2 " [-help]" } while [[ $# -ne 0 ]] do arg=$1; shift case $arg in -sml) if [[ $# -eq 0 ]] then echo -u2 $CMD must name executable with -sml option exit 1 fi SMLX=$1; shift ;; -help) printUsage exit 0 ;; *) echo -u2 ${CMD} bad option $arg printUsage exit 1 esac done bin/ndotest.sh coresml -diff -sml $SMLX bin/ndotest.sh typing -diff -sml $SMLX bin/ndotest.sh modules -diff -sml $SMLX bin/ndotest.sh basis -diff -sml $SMLX bin/ndotest.sh bugs -diff -sml $SMLX
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |