8000 Make expected timeouts explicit · freebsd-net/tcp-testsuite@ef9c696 · GitHub
[go: up one dir, main page]

Skip to content

Commit ef9c696

Browse files
committed
Make expected timeouts explicit
1 parent c1c287c commit ef9c696

9 files changed

+2
-2
lines changed

run-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ for file ; do
127127
if [ $result -eq 1 -a -f ${rootdir}/${testcase}.exfail -a $verbose -eq 0 ] ; then
128128
rm ${rootdir}/${testdir}/${prefix}${testname}.out
129129
fi
130-
if [ $result -eq 124 -a -f ${rootdir}/${testcase}.exfail -a $verbose -eq 0 ] ; then
130+
if [ $result -eq 124 -a -f ${rootdir}/${testcase}.extimeout -a $verbose -eq 0 ] ; then
131131
rm ${rootdir}/${testdir}/${prefix}${testname}.out
132132
fi
133133
if [ -t 1 ] ; then
@@ -162,7 +162,7 @@ for file ; do
162162
fi
163163
;;
164164
124)
165-
if [ -f ${rootdir}/${testcase}.exfail ] ; then
165+
if [ -f ${rootdir}/${testcase}.extimeout ] ; then
166166
extimedout=`expr $extimedout + 1`
167167
if [ -t 1 ] ; then
168168
printf "\033[32m%10s\033[0m\n" "TIMEDOUT"

0 commit comments

Comments
 (0)
0