Changeset 1139 in MondoRescue for branches/stable/mondo/src/test/mktest


Ignore:
Timestamp:
Feb 11, 2007, 7:04:12 PM (17 years ago)
Author:
Bruno Cornec
Message:

memory tests improvements
useless code removed from libmondo-fork.c
more merges for libmondo-archive.c

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/src/test/mktest

    r1104 r1139  
    66#
    77
    8 lib="../lib/mr_conf.c ../lib/mr_msg.c ../lib/mr_err.c ../lib/mr_mem.c"
    9 OPT="-Wall -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_REENTRANT -Wstrict-prototypes -Wshadow -funsigned-char -Wunused -Winit-self -Wcast-align -fno-strict-aliasing -O2 -g -I../common -I../include"
     8lib="../lib/mr_conf.c ../lib/mr_msg.c ../lib/mr_err.c ../lib/mr_mem.c ../lib/mr_str.c ../lib/mr_file.c"
     9OPT="-Wall -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_REENTRANT -Wstrict-prototypes -Wshadow -funsigned-char -Wunused -Wcast-align -fno-strict-aliasing -O2 -g -I../common -I../include"
    1010
    11 echo "Generating test-msg"
    12 gcc $OPT test-msg.c $lib -o test-msg
    13 echo "Generating test-string"
    14 gcc $OPT test-string.c ../lib/mr_str.c $lib -o test-string
    15 echo "Generating test-conf"
    16 gcc $OPT test-conf.c $lib -o test-conf
    17 echo "Generating test-mem"
    18 gcc $OPT test-mem.c $lib -o test-mem
     11prg="test-conf test-string test-msg test-mem"
     12
     13for i in $prg ; do
     14    echo "Generating $i"
     15    gcc $OPT $i.c $lib -o $i
     16done
    1917
    2018echo "Testing against previous run"
    21 for f in test-conf test-string test-msg test-mem; do
     19for f in $prg ; do
    2220    chmod 755 $f
    2321    ./$f > /tmp/$f.res
     
    2826        echo "$f test OK"
    2927    fi
     28done
     29for f in $prg ; do
    3030    valgrind -q --error-exitcode=1 --leak-check=yes ./$f 2>&1 > /tmp/valgrind-$f.res
    3131    if [ $? -ne 0 ]; then
Note: See TracChangeset for help on using the changeset viewer.