Changeset 96 for trunk/test
- Timestamp:
- Mar 16, 2007, 10:08:08 PM (18 years ago)
- Location:
- trunk/test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/testcompile.sh
r91 r96 53 53 cat $i | ./unreached_code.pl; 54 54 cat $i | ./ampersand_missing.sh; 55 cat $i | ./uninitialized.pl;56 55 cat $i | ./eqeq.pl; 57 cat $i | ./for_bounds.pl; 56 cat $i | ./for_bounds.pl; # doesn't work? 58 57 cat $i | ./unchecked_returns.pl; 59 cat $i | ./un reached_code.pl;60 cat $i | ./uninitialized.pl; 58 cat $i | ./uninitialized.pl; # doesn't work? 59 61 60 # from http://people.redhat.com/mstefani/wine/smatch/ 62 61 if [ -f ./while_for_check.pl ]; then 63 cat $i | ./while_for_check.pl; 62 cat $i | ./while_for_check.pl; # works 64 63 fi 65 64 # --> end wine <-- 66 # samhain specific 65 66 # samhain specific modifications (list of free/malloc funcs) 67 # doesn't seem to find anything useful 67 68 if [ $memcheck = xsimple ]; then 68 69 if [ -f ./samhain_unfree.pl ]; then … … 80 81 fi 81 82 # --> end samhain specific <-- 82 #cat $i | ./unfree.pl | \ 83 # egrep -v 'x_cutest_.*Test_' | \ 84 # grep -v 'x_sh_unix.c .... .... sh_unix_copyenv'; 85 touch list_null_funcs_uniq; 83 84 echo malloc > list_null_funcs_uniq; 85 echo getenv >> list_null_funcs_uniq; 86 86 cat $i | ./deference_check.pl; 87 87 rm -f list_null_funcs_uniq; -
trunk/test/testrun_1b.sh
r81 r96 246 246 # ------------- third test ------------- 247 247 # 248 if test "x$hostname" = "xtenebra" 249 then 250 if test -f /usr/local/lib/libprelude.so 251 then 252 LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH" 253 export LD_LIBRARY_PATH 254 fi 255 fi 256 # 248 257 PM=`find_path prelude-manager` 249 258 if [ -z "$PM" ]; then
Note:
See TracChangeset
for help on using the changeset viewer.