Changeset 96 for trunk/test


Ignore:
Timestamp:
Mar 16, 2007, 10:08:08 PM (18 years ago)
Author:
rainer
Message:

Fix for ticket #54 (samhain_hide module does not work under kernel 2.6.20).

Location:
trunk/test
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/testcompile.sh

    r91 r96  
    5353                cat $i | ./unreached_code.pl;
    5454                cat $i | ./ampersand_missing.sh;
    55                 cat $i | ./uninitialized.pl;
    5655                cat $i | ./eqeq.pl;
    57                 cat $i | ./for_bounds.pl;
     56                cat $i | ./for_bounds.pl;    # doesn't work?
    5857                cat $i | ./unchecked_returns.pl;
    59                 cat $i | ./unreached_code.pl;
    60                 cat $i | ./uninitialized.pl;
     58                cat $i | ./uninitialized.pl; # doesn't work?
     59
    6160                # from http://people.redhat.com/mstefani/wine/smatch/
    6261                if [ -f ./while_for_check.pl ]; then
    63                     cat $i | ./while_for_check.pl;
     62                    cat $i | ./while_for_check.pl; # works
    6463                fi
    6564                # --> end wine <--
    66                 # samhain specific
     65
     66                # samhain specific modifications (list of free/malloc funcs)
     67                # doesn't seem to find anything useful
    6768                if [ $memcheck = xsimple ]; then
    6869                    if [ -f ./samhain_unfree.pl ]; then
     
    8081                fi
    8182                # --> 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;
    8686                cat $i | ./deference_check.pl;
    8787                rm -f list_null_funcs_uniq;
  • trunk/test/testrun_1b.sh

    r81 r96  
    246246            # -------------  third test -------------
    247247            #
     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            #
    248257            PM=`find_path prelude-manager`
    249258            if [ -z "$PM" ]; then
Note: See TracChangeset for help on using the changeset viewer.