source: git/factory/libfac/charset/tests/charsettest @ 741bb9

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