home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-01-03 | 707 b | 36 lines | [TEXT/ttxt] |
- #!/bin/csh
- #
- # Run this file to test the command `eval'.
- #
- # Usage : basic_test [args_for_eval]
- #
- #set verbose = 1
- if (!($?SmallEiffel)) then
- echo "Environment Variable 'SmallEiffel' not set."
- exit 1
- endif
- set ev=${SmallEiffel}/bin/eval
- $ev $* HELLO_WORLD make
- echo Testing $ev $*
- echo Options : $*
- cd ${SmallEiffel}/lib_test
- echo -n "Testing ."
- ###################################################################
- ${ev} $* testargs make
- echo -n "."
- ${ev} $* testargs make 1
- echo -n "."
- ${ev} $* testargs make 2 arg2
- echo "."
- foreach t (vide.e test_*.e)
- echo $t
- if ("$t" == "test_address_of1.e") then
- else if ("$t" == "test_any.e") then
- else
- $ev $* $t make
- echo -n "."
- endif
- end
- echo " Done."
-
-