Whamcloud - gitweb
b=13350
authorgrev <grev>
Fri, 17 Aug 2007 17:49:32 +0000 (17:49 +0000)
committergrev <grev>
Fri, 17 Aug 2007 17:49:32 +0000 (17:49 +0000)
i=Nathan

Abort runtests if $FILES is empty.

lustre/tests/runtests

index 42bc087..d49738b 100755 (executable)
@@ -101,6 +101,8 @@ mkdir $DST || fail "can't mkdir $DST" 10
 # ok, that hopefully worked, so let's do a little more, with files that
 # haven't changed in the last day (hopefully they don't change during test)
 FILES=`find $SRC -type f -mtime +1 -ctime +1 | head -n $COUNT`
+[ -z "$FILES" ] && fail "No unchanged files - is $SRC a new dir?"
+
 log "copying files from $SRC to $DST$SRC at `date`"
 tar cf - $FILES | tar xvf - -C $DST > /dev/null || fail "copying $SRC" 11