jengelh-datetimespielwiese
Last change
on this file since 16055bd was
16055bd,
checked in by Martin Lee <martinlee84@…>, 11 years ago
|
chg: move libfac into factory
|
-
Property mode set to
100755
|
File size:
799 bytes
|
Rev | Line | |
---|
[1a80b4] | 1 | #!/bin/csh |
---|
| 2 | set OS=`uname` |
---|
| 3 | if ( $OS == "Linux" ) then |
---|
| 4 | set ECHO="/bin/echo -e" |
---|
| 5 | set MAKE=make |
---|
| 6 | else if ( $OS == "SunOS" ) then |
---|
| 7 | set ECHO=/usr/5bin/echo |
---|
| 8 | set MAKE=gmake |
---|
| 9 | else |
---|
| 10 | set ECHO=echo |
---|
| 11 | set MAKE=make |
---|
| 12 | endif |
---|
| 13 | |
---|
| 14 | (cd .. ; $MAKE testmcs ) |
---|
| 15 | |
---|
| 16 | $ECHO "\n\ntesting CharSet:\c" |
---|
| 17 | $ECHO "\nt1 \c" |
---|
| 18 | ../testmcs < t1 |
---|
| 19 | $ECHO "\nt2 \c" |
---|
| 20 | ../testmcs < t2 |
---|
| 21 | $ECHO "\nt3 \c" |
---|
| 22 | ../testmcs < t3 |
---|
| 23 | $ECHO "\nt4 \c" |
---|
| 24 | ../testmcs < t4 |
---|
| 25 | $ECHO "\nt5 \c" |
---|
| 26 | ../testmcs < t5 |
---|
| 27 | $ECHO "\nt6 \c" |
---|
| 28 | ../testmcs < t6 |
---|
| 29 | $ECHO "\nt7 \c" |
---|
| 30 | ../testmcs < t7 |
---|
| 31 | $ECHO "\nt8 \c" |
---|
| 32 | ../testmcs < t8 |
---|
| 33 | $ECHO "\nt9 \c" |
---|
| 34 | ../testmcs < f9 |
---|
| 35 | |
---|
| 36 | $ECHO "\nw1 \c" |
---|
| 37 | ../testmcs < w1 |
---|
| 38 | $ECHO "\nw2 \c" |
---|
| 39 | ../testmcs < w2 |
---|
| 40 | $ECHO "\nw3 \c" |
---|
| 41 | ../testmcs < w3 |
---|
| 42 | $ECHO "\nw4 \c" |
---|
| 43 | ../testmcs < w4 |
---|
| 44 | |
---|
| 45 | $ECHO "\nx1 \c" |
---|
| 46 | ../testmcs < x1 |
---|
| 47 | |
---|
| 48 | $ECHO "\n" |
---|
| 49 | $ECHO |
---|
| 50 | # long time section: |
---|
| 51 | $ECHO "\n Long-time section!\n" |
---|
Note: See
TracBrowser
for help on using the repository browser.