diff options
Diffstat (limited to 'regress')
-rw-r--r-- | regress/forward-control.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/forward-control.sh b/regress/forward-control.sh index 9d000bc76..ac20bacc9 100644 --- a/regress/forward-control.sh +++ b/regress/forward-control.sh @@ -11,7 +11,7 @@ READY=$OBJ/ready wait_for_file_to_appear() { _path=$1 _n=0 - while test ! -e $_path ; do + while test ! -f $_path ; do test $_n -eq 1 && trace "waiting for $_path to appear" _n=`expr $_n + 1` test $_n -ge 5 && return 1 |