diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-21 02:59:49 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-21 02:59:49 +0000 |
commit | f3977a0c4c932310fcad586d9146dece754f0fe8 (patch) | |
tree | 4f3785bbfe91c771ec1002d803d0b5910e4d4af8 | |
parent | d22ecbef2ee66bb9315a5773cb1413078bbc6c46 (diff) | |
download | ATCD-f3977a0c4c932310fcad586d9146dece754f0fe8.tar.gz |
"No such file or directory" is allowed in Cached_Accept_Conn_Test.log
-rwxr-xr-x | tests/run_tests.check | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/run_tests.check b/tests/run_tests.check index 8b33cf979a5..0eac73e5d12 100755 --- a/tests/run_tests.check +++ b/tests/run_tests.check @@ -10,8 +10,12 @@ tmp=/tmp 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" - +if [ "$1" != "log/Cached_Accept_Conn_Test.log" ]; then + ERROR_MSGS="assertion failed|not supported|No such file or directory|Invalid argument|timeout|Bad file number" +else + # "No such file or directory" is allowed in Cached_Accept_Conn_Test.log + ERROR_MSGS="assertion failed|not supported|Invalid argument|timeout|Bad file number" +fi status=0 for arg do |