tell user that we're about to sleep
authorJim Meyering <jim@meyering.net>
Wed, 2 Feb 2000 14:04:40 +0000 (14:04 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 2 Feb 2000 14:04:40 +0000 (14:04 +0000)
tests/touch/empty-file
tests/touch/no-rights

index f6a8f1cf171d1f8ef56b0f7ff7ccdd8546627ff4..6e478a97f83f78b7d5801f15a8da3cc85510e749 100755 (executable)
@@ -34,6 +34,7 @@ if test $framework_failure = 1; then
   exit 1
 fi
 
+echo sleeping for $SLEEP_SECONDS seconds...
 sleep $SLEEP_SECONDS
 for d in $TOUCH_DIR_LIST; do
   touch $d/a || fail=1
@@ -41,6 +42,7 @@ for d in $TOUCH_DIR_LIST; do
   test "$*" = "x $d/a $d/b" || fail=1
 done
 
+echo sleeping for $SLEEP_SECONDS seconds...
 sleep $SLEEP_SECONDS
 for d in $TOUCH_DIR_LIST; do
   touch $d/b
index facc7acd2b2e3f3280ce9201339afddd7f6ba462..2babd6814f07dcdccfeabedb1c3209488d446301 100755 (executable)
@@ -16,6 +16,7 @@ rm -rf $t1 $t2
 : > $t1
 
 # Make sure $t2 is two seconds newer than $t1.
+echo sleeping for $SLEEP_SECONDS seconds...
 sleep $SLEEP_SECONDS
 : > $t2
 fail=0