From 7abe0b6e4f8ecd0fca188af5bdfb3b10b8b77c36 Mon Sep 17 00:00:00 2001 From: nobody Date: Sun, 19 Jul 1998 04:03:07 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'TAO-0_1_40'. --- tests/run_tests.check | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100755 tests/run_tests.check (limited to 'tests/run_tests.check') diff --git a/tests/run_tests.check b/tests/run_tests.check deleted file mode 100755 index 8b33cf979a5..00000000000 --- a/tests/run_tests.check +++ /dev/null @@ -1,37 +0,0 @@ -#! /bin/sh -f -# $Id$ -# -# Checks one ore more ACE test log file(s) for expected results. - -IFS="|" -tmp=/tmp - -# These patterns must be contained in log file. -SUCCESS_MSGS="starting|Ending" - -# These patterns should not be contained in log file. -ERROR_MSGS="assertion failed|not supported|No such file or directory|Invalid argument|timeout|Bad file number" - -status=0 - -for arg do - for i in $SUCCESS_MSGS; do - egrep $i $arg >/dev/null 2>&1 - if [ $? -eq 1 ]; then - echo Error in $arg: no line with $i - status=1 - fi - done - - for i in $ERROR_MSGS; do - #### The /dev/null arg to egrep causes the filename to be printed - #### out. The sed command strips off the leading 'log/' and - #### trailing '.log'. - egrep $i $arg /dev/null | sed -e 's%^log/%%' -e 's%[.]log:%: %' - if [ $? -ne 0 ]; then status=1; fi - done -done - -exit $status - -# EOF -- cgit v1.2.1