Changes in trunk/test/test.sh [30:19]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/test.sh
r30 r19 1 1 #! /bin/sh 2 3 #4 # Copyright Rainer Wichmann (2006)5 #6 # License Information:7 # This program is free software; you can redistribute it and/or modify8 # it under the terms of the GNU General Public License as published by9 # the Free Software Foundation; either version 2 of the License, or10 # (at your option) any later version.11 #12 # This program is distributed in the hope that it will be useful,13 # but WITHOUT ANY WARRANTY; without even the implied warranty of14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15 # GNU General Public License for more details.16 #17 # You should have received a copy of the GNU General Public License18 # along with this program; if not, write to the Free Software19 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.20 #21 22 # -----------------------------------------------------------------------23 # Be Bourne compatible24 # -----------------------------------------------------------------------25 26 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then27 emulate sh28 NULLCMD=:29 elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then30 set -o posix31 fi32 33 # -----------------------------------------------------------------------34 # Make sure we support functions (from the autoconf manual)35 # -----------------------------------------------------------------------36 37 TSHELL="${TSHELL-/bin/sh}"38 if test x"$1" = "x--re-executed"39 then40 shift41 elif "$TSHELL" -c 'foo () { (exit 0); exit 0; }; foo' >/dev/null 2>&142 then43 :44 else45 for cmd in sh bash ash bsh ksh zsh sh5; do46 X="$PATH:/bin:/usr/bin:/usr/afsws/bin:/usr/ucb:/usr/xpg4/bin";47 OLD_IFS=${IFS}48 IFS=':'; export IFS49 for dir in $X; do50 shell="$dir/$cmd"51 if (test -f "$shell" || test -f "$shell.exe")52 then53 if "$shell" -c 'foo () { (exit 0); exit 0; }; foo' >/dev/null 2>&154 then55 TSHELL="$shell"; export TSHELL56 IFS=${OLD_IFS}; export IFS57 exec "$shell" "$0" --re-executed ${1+"$@"}58 fi59 fi60 done61 IFS=${OLD_IFS}; export IFS62 done63 echo "-----------------------------------------------------------------"64 echo "ERROR: Unable to locate a shell interpreter with function support" >&265 echo "-----------------------------------------------------------------"66 { (exit 1); exit 1; }67 fi68 69 # -----------------------------------------------------------------------70 # Make sure we support 'let' (from the autoconf manual)71 # -----------------------------------------------------------------------72 73 TSHELL="${TSHELL-/bin/sh}"74 if test x"$1" = "x--re-run"75 then76 shift77 elif "$TSHELL" -c 'a=5; let "a = a + 5"' >/dev/null 2>&178 then79 :80 else81 for cmd in sh bash ash bsh ksh zsh sh5; do82 X="$PATH:/bin:/usr/bin:/usr/afsws/bin:/usr/ucb:/usr/xpg4/bin";83 OLD_IFS=${IFS}84 IFS=':'; export IFS85 for dir in $X; do86 shell="$dir/$cmd"87 if (test -f "$shell" || test -f "$shell.exe")88 then89 if "$shell" -c 'foo () { (exit 0); exit 0; }; foo' >/dev/null 2>&190 then91 if "$shell" -c 'a=5; let "a = a + 5"' >/dev/null 2>&192 then93 TSHELL="$shell"; export TSHELL94 IFS=${OLD_IFS}; export IFS95 exec "$shell" "$0" --re-run ${1+"$@"}96 fi97 fi98 fi99 done100 IFS=${OLD_IFS}; export IFS101 done102 echo "-----------------------------------------------------------------"103 echo "ERROR: Unable to locate a shell interpreter with support for 'let'" >&2104 echo "-----------------------------------------------------------------"105 { (exit 1); exit 1; }106 fi107 108 109 umask 0022110 2 111 3 isok=`test -t 1 2>&1 | wc -c` … … 148 40 echo " ${S}test.sh 6${E} -- Controlling the daemon" 149 41 echo " ${S}test.sh 7${E} -- GnuPG signed files / prelude log" 150 echo " ${S}test.sh 8${E} -- Suidcheck"151 42 152 43 echo " ${S}test.sh 10${E} -- Test c/s init/check (testrc_2.in)" … … 155 46 echo " ${S}test.sh 13${E} -- Test full c/s w/mysql (testrc_2.in)" 156 47 echo " ${S}test.sh 14${E} -- Test full c/s w/postgres (testrc_2.in)" 157 echo " ${S}test.sh all${E} -- All tests" 158 } 159 scripts () { 48 echo " ${S}test.sh all${E} -- All except 12+" 49 160 50 echo 161 echo "Scripts used by tests :"51 echo "Scripts used by tests (located in ${SCRIPTDIR}):" 162 52 echo " (1) testcompile.sh (2) testhash.sh (3) testrun_1.sh (4) testrun_1a.sh" 163 echo " (5) testext.sh (6) testtimesrv.sh (7) testrun_1b.sh (8) testrun_1c.sh" 164 echo " (10) testrun_2.sh (11) testrun_2a.sh (12) testrun_2b.sh (13) testrun_2c.sh" 165 echo " (14) testrun_2d.sh" 53 echo " (5) testext.sh (6) testtimesrv.sh (7) testrun_1b.sh (10) testrun_2.sh" 54 echo " (11) testrun_2a.sh (12) testrun_2b.sh (13) testrun_2c.sh (14) testrun_2d.sh" 166 55 } 167 56 … … 175 64 cleanup=on 176 65 doall= 177 usevalgrind=178 66 179 67 while [ $# -gt 0 ] … … 181 69 case "$1" in 182 70 -h|--help) usage; exit 0;; 183 --scripts) usage; scripts; exit 0;;184 71 -v|--verbose) verbose=on; quiet= ;; 185 72 -q|--quiet) quiet=on; verbose= ;; … … 187 74 --no-cleanup) cleanup= ;; 188 75 --really-all) doall=on;; 189 --valgrind) usevalgrind=on;;190 76 --srcdir=*) TOP_SRCDIR=`echo $1 | sed s,--srcdir=,,`; export TOP_SRCDIR;; 191 77 --color=*) … … 274 160 275 161 PW_DIR=`pwd`; export PW_DIR 276 277 #278 # group/world writeable will cause problems279 #280 chmod go-w .281 162 # 282 163 # … … 401 282 rm -f testrc_1.dyn 402 283 rm -f testrc_2 403 rm -f testrc_22404 284 rm -f ./.samhain_file 405 285 rm -f ./.samhain_log* 406 rm -f ./.samhain_lock* 407 test -d testrun_testdata && chmod -R 0700 testrun_testdata 408 test -d .quarantine && rm -rf .quarantine 409 rm -rf testrun_testdata 286 rm -f ./.samhain_lock 287 test -d testrun_data && chmod -R 0700 testrun_data 288 rm -rf testrun_data 410 289 rm -f test_log_db 411 290 rm -f test_log_prelude 412 rm -f test_log_valgrind*413 rm -f test_log_yulectl414 rm -f yule.html415 rm -f yule.html2416 291 } 417 292 … … 455 330 tmp="localhost" 456 331 fi 457 # 458 # first one is hostname, others are aliases 459 # 460 tmp2=`cat /etc/hosts | egrep "^ *[0123456789].* $tmp" | awk '{ print $2 }'` 461 if [ -z "$tmp2" ]; then 462 echo "$tmp" 463 else 464 echo "$tmp2" 465 fi 332 echo "$tmp" 466 333 } 467 334 … … 474 341 hostname="127.0.0.1" 475 342 fi 476 477 # Seems that 'valgrind' causes random hangs :-(478 #479 if [ -z "$usevalgrind" ]; then480 VALGRIND=481 else482 VALGRIND=`find_path valgrind`;483 fi484 [ -z "$VALGRIND" ] || {485 VALGRIND="$VALGRIND --quiet --tool=memcheck --suppressions=.test.supp";486 export VALGRIND;487 [ -z "$verbose" ] || log_msg_ok "using valgrind"488 cat > ".test.supp" <<End-of-data489 #490 # there are unitialized bytes in the struct...491 #492 {493 pushdata_01494 Memcheck:Param495 write(buf)496 obj:/lib/ld-*.so497 fun:sh_hash_pushdata498 fun:sh_files_filecheck499 fun:sh_dirs_chk500 }501 {502 pushdata_02503 Memcheck:Param504 write(buf)505 obj:/lib/ld-*.so506 fun:sh_hash_pushdata507 fun:sh_files_filecheck508 fun:sh_files_checkdir509 }510 {511 pushdata_03512 Memcheck:Param513 write(buf)514 obj:/lib/ld-*.so515 fun:sh_hash_pushdata516 fun:sh_hash_writeout517 fun:main518 }519 520 End-of-data521 }522 343 523 344 if test x$1 = x1; then … … 564 385 exit $? 565 386 fi 566 if test x$1 = x8; then567 . ${SCRIPTDIR}/testrun_1.sh568 . ${SCRIPTDIR}/testrun_1c.sh569 testrun1c570 print_summary571 exit $?572 fi573 387 if test x$1 = x10; then 574 388 . ${SCRIPTDIR}/testrun_2.sh … … 620 434 . ${SCRIPTDIR}/testrun_1b.sh 621 435 let "TEST_MAX = TEST_MAX + MAXTEST" >/dev/null 622 . ${SCRIPTDIR}/testrun_1c.sh623 let "TEST_MAX = TEST_MAX + MAXTEST" >/dev/null624 436 . ${SCRIPTDIR}/testrun_2.sh 625 437 let "TEST_MAX = TEST_MAX + MAXTEST" >/dev/null … … 659 471 MAXTEST=${TEST_MAX}; export MAXTEST 660 472 testrun1b 661 #662 . ${SCRIPTDIR}/testrun_1.sh663 . ${SCRIPTDIR}/testrun_1c.sh664 MAXTEST=${TEST_MAX}; export MAXTEST665 testrun1c666 473 # 667 474 . ${SCRIPTDIR}/testrun_2.sh
Note:
See TracChangeset
for help on using the changeset viewer.