about summary refs log tree commit diff
path: root/Test/C02cond.ztst
diff options
context:
space:
mode:
authorJun T <takimoto-j@kba.biglobe.ne.jp>2016-05-09 20:27:57 -0700
committerBarton E. Schaefer <schaefer@zsh.org>2016-05-09 20:27:57 -0700
commit724021779b01a92db2641504cddf55ba3ce6d1ad (patch)
tree5da949991b17925ae7e5380ef92f267a30728f51 /Test/C02cond.ztst
parentc5c2fa4fb5dbf242f94860ff5e2d40670560d0ae (diff)
downloadzsh-724021779b01a92db2641504cddf55ba3ce6d1ad.tar.gz
zsh-724021779b01a92db2641504cddf55ba3ce6d1ad.tar.xz
zsh-724021779b01a92db2641504cddf55ba3ce6d1ad.zip
38445: subsequent tests rely on a file touched by the -N test, so it must always be touched
(Bart) Minor tweak to SECONDS loop to make total of sleeps be 60 seconds
Diffstat (limited to 'Test/C02cond.ztst')
-rw-r--r--Test/C02cond.ztst7
1 files changed, 4 insertions, 3 deletions
diff --git a/Test/C02cond.ztst b/Test/C02cond.ztst
index b0e84ddeb..e315f6c10 100644
--- a/Test/C02cond.ztst
+++ b/Test/C02cond.ztst
@@ -152,23 +152,24 @@
     unmodified_ls="$(ls -lu $unmodified)"
     print -u $ZTST_fd 'This test takes up to 60 seconds...'
   fi
+  sleep 2
+  touch $newnewnew
   if [[ $OSTYPE == "cygwin" ]]; then
     ZTST_skip="[[ -N file ]] not supported on Cygwin"
   elif (( isnfs )); then
     ZTST_skip="[[ -N file ]] not supported with NFS"
   elif { (( ! $+unmodified_ls )) &&
-         { sleep 2; cat $unmodified } &&
+         cat $unmodified &&
          { df -k -- ${$(print -r -- "$mtab" |
                         awk '/noatime/ {print $1,$3}'):-""} | tr -s ' ' |
            fgrep -- "$(df -k . | tail -1 | tr -s ' ')" } >&/dev/null } ||
        { (( $+unmodified_ls )) && SECONDS=0 &&
-         ! until (( SECONDS >= 60 )); do
+         ! until (( SECONDS >= 58 )); do
              ZTST_hashmark; sleep 2; cat $unmodified
              [[ $unmodified_ls != "$(ls -lu $unmodified)" ]] && break
 	   done }; then
     ZTST_skip="[[ -N file ]] not supported with noatime file system"
   else
-    touch $newnewnew
     [[ -N $newnewnew && ! -N $unmodified ]]
   fi
 0:-N cond