Whamcloud - gitweb
b=19702 fix COUNT to work properly
authorElena Gryaznova <grev@sun.com>
Mon, 11 Jan 2010 12:25:00 +0000 (15:25 +0300)
committerJohann Lombardi <johann@sun.com>
Wed, 13 Jan 2010 22:05:33 +0000 (23:05 +0100)
i=Andrew.Perepechko

lustre/tests/runtests

index 64426d1..ad0778b 100755 (executable)
@@ -64,8 +64,8 @@ mkdir $DST || error "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=$TMP/runtests.files
-# print0 is to use "NUL" instead of newline as filename terminator, bug 19702 
-find $RUNTESTS_SRC -type f -mtime +1 -print0 | head -n $COUNT > $FILES
+# use "NUL" instead of newline as filename terminator, bug 19702 
+find $RUNTESTS_SRC -type f -mtime +1 | head -n $COUNT | tr '\n' '\0' > $FILES
 [ -s "$FILES" ] || error "$RUNTESTS_SRC contains only files modifed less than 2 days ago"
 
 log "copying files from $RUNTESTS_SRC to $DST$RUNTESTS_SRC at `date`"