X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Ftests%2Flustre-rsync-test.sh;h=b091763421f1217c925f2bd02ccf2c65efcc0078;hb=ad21703f66c0d013d3cbd2d7f307715ef77864ff;hp=b07d1e794f14bec7c194e1eaa26a814c6e4b410a;hpb=5165cdd4b063d523e5ae261f47818b5ba2bbc7cc;p=fs%2Flustre-release.git diff --git a/lustre/tests/lustre-rsync-test.sh b/lustre/tests/lustre-rsync-test.sh index b07d1e7..b091763 100644 --- a/lustre/tests/lustre-rsync-test.sh +++ b/lustre/tests/lustre-rsync-test.sh @@ -12,16 +12,14 @@ SRCDIR=`dirname $0` export PATH=$PWD/$SRCDIR:$SRCDIR:$PWD/$SRCDIR/../utils:$PATH:/sbin ONLY=${ONLY:-"$*"} -[ -n "$ONLY" ] && SLOW=yes ALWAYS_EXCEPT="$LRSYNC_EXCEPT" # bug number for skipped test: # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT! -[ "$ALWAYS_EXCEPT$EXCEPT" ] && \ - echo "Skipping tests: `echo $ALWAYS_EXCEPT $EXCEPT`" +[ "$SLOW" = "no" ] && EXCEPT_SLOW="" -# disable till changelogs from orion landed (LU-2034) -ALWAYS_EXCEPT="1 2 3 4 5 6 7 8 9" +[ "$ALWAYS_EXCEPT$EXCEPT" ] && + echo "Skipping tests: `echo $ALWAYS_EXCEPT $EXCEPT`" KILL=/bin/kill @@ -45,14 +43,14 @@ build_test_filter export LRSYNC=${LRSYNC:-"$LUSTRE/utils/lustre_rsync"} [ ! -f "$LRSYNC" ] && export LRSYNC=$(which lustre_rsync) -export LRSYNC="$LRSYNC -v -c no" # -a +export LRSYNC="$LRSYNC -v -c no -d 2" # control the time of tests DBENCH_TIME=${DBENCH_TIME:-60} # No of seconds to run dbench TGT=$TMP/target TGT2=$TMP/target2 -MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | \ - awk '{gsub(/_UUID/,""); print $1}' | head -1) +MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | + awk '{ gsub(/_UUID/,""); print $1 }' | head -n1) init_changelog() { CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n) @@ -111,7 +109,7 @@ check_xattr() { } check_diff() { - local changelog_file=$LOGDIR/${TESTSUITE}.test_${3}.changelog + local changelog_file=$(generate_logname "changelog") if [ -e $1 -o -e $2 ]; then diff -rq -x "dev1" $1 $2 @@ -158,9 +156,11 @@ test_1() { # Device files #mknod $DIR/$tdir/dev1 b 8 1 - # Replicate - echo "Replication #1" - $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG + # Replicate + local LRSYNC_LOG=$(generate_logname "lrsync_log") + echo "Replication #1" + $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG \ + -D $LRSYNC_LOG # Set attributes chmod 000 $DIR/$tdir/d2/file3 @@ -175,8 +175,8 @@ test_1() { setfattr -n user.foo -v $value $DIR/$tdir/file5 fi - echo "Replication #2" - $LRSYNC -l $LREPL_LOG + echo "Replication #2" + $LRSYNC -l $LREPL_LOG -D $LRSYNC_LOG if [[ "$xattr" != "no" ]]; then local xval1=$(get_xattr_value user.foo $TGT/$tdir/file5) @@ -197,9 +197,9 @@ test_1() { RC=1 fi - # Use diff to compare the source and the destination - check_diff $DIR/$tdir $TGT/$tdir 1 - check_diff $DIR/$tdir $TGT2/$tdir 1 + # Use diff to compare the source and the destination + check_diff $DIR/$tdir $TGT/$tdir + check_diff $DIR/$tdir $TGT2/$tdir fini_changelog cleanup_src_tgt @@ -207,48 +207,95 @@ test_1() { } run_test 1 "Simple Replication" -# Test 2a - Replicate files created by dbench +# Test 1a - test create/delete operations in ROOT directory +test_1a() { # LU-5005 + rm -rf $TGT/root-* 2> /dev/null + rm -rf $DIR/root-* 2> /dev/null + init_changelog + + # Directory create + mkdir $DIR/root-dir + + # File create + touch $DIR/root-file + touch $DIR/root-file2 + + # File rename + mv $DIR/root-file2 $DIR/root-file3 + + # File and directory delete + touch $DIR/root-file4 + mkdir $DIR/root-dir1 + rm $DIR/root-file4 + rm -rf $DIR/root-dir1 + + # Replicate + local LRSYNC_LOG=$(generate_logname "lrsync_log") + echo "Replication" + $LRSYNC -s $DIR -t $TGT -m $MDT0 -u $CL_USER -l $LREPL_LOG \ + -D $LRSYNC_LOG + + # Verify + stat $TGT/root-dir || error "Dir create not replicated" + stat $TGT/root-file || error "File create not replicated" + stat $TGT/root-file2 && error "Rename not replicated (src)" + stat $TGT/root-file3 || error "Rename not replicated (tgt)" + stat $TGT/root-dir1 && error "Dir delete not replicated" + stat $TGT/root-file4 && error "File delete not replicated" + + fini_changelog + rm -fr $TGT/root-* + rm -fr $DIR/root-* + return 0 +} +run_test 1a "Replicate create/delete operations in ROOT directory" + +# Test 2a - Replicate files created by dbench test_2a() { - [ "$SLOW" = "no" ] && skip "Skipping slow test" && return - init_src - init_changelog + init_src + init_changelog - # Run dbench - sh rundbench -C -D $DIR/$tdir 2 -t $DBENCH_TIME || error "dbench failed!" + # Run dbench + sh rundbench -C -D $DIR/$tdir 2 -t $DBENCH_TIME || error "dbench failed" - # Replicate the changes to $TGT - $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG + local LRSYNC_LOG=$(generate_logname "lrsync_log") + # Replicate the changes to $TGT + $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG \ + -D $LRSYNC_LOG - # Use diff to compare the source and the destination - check_diff $DIR/$tdir $TGT/$tdir 2a - check_diff $DIR/$tdir $TGT2/$tdir 2a + # Use diff to compare the source and the destination + check_diff $DIR/$tdir $TGT/$tdir + check_diff $DIR/$tdir $TGT2/$tdir - fini_changelog - cleanup_src_tgt - return 0 + fini_changelog + cleanup_src_tgt + return 0 } run_test 2a "Replicate files created by dbench." # Test 2b - Replicate files changed by dbench. test_2b() { - [ "$SLOW" = "no" ] && skip "Skipping slow test" && return - - init_src - init_changelog - - # Run dbench - sh rundbench -C -D $DIR/$tdir 2 -t $DBENCH_TIME & - sleep 20 - - local child_pid=$(pgrep dbench) - echo PIDs: $child_pid - echo Stopping dbench - $KILL -SIGSTOP $child_pid - - echo Starting replication - $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG - check_diff $DIR/$tdir $TGT/$tdir 2b + local child_pid + init_src + init_changelog + + # Run dbench + sh rundbench -C -D $DIR/$tdir 2 -t $DBENCH_TIME & + # wait for dbench to start + wait_for_function 'child_pid=$(pgrep dbench)' 360 + # let dbench run for a bit + sleep 10 + + echo PIDs: $child_pid + echo Stopping dbench + $KILL -SIGSTOP $child_pid + + local LRSYNC_LOG=$(generate_logname "lrsync_log") + echo Starting replication + $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG \ + -D $LRSYNC_LOG + check_diff $DIR/$tdir $TGT/$tdir echo Resuming dbench $KILL -SIGCONT $child_pid @@ -257,20 +304,20 @@ test_2b() { echo Stopping dbench $KILL -SIGSTOP $child_pid - echo Starting replication - $LRSYNC -l $LREPL_LOG - check_diff $DIR/$tdir $TGT/$tdir 2b + echo Starting replication + $LRSYNC -l $LREPL_LOG -D $LRSYNC_LOG + check_diff $DIR/$tdir $TGT/$tdir echo "Wait for dbench to finish" $KILL -SIGCONT $child_pid wait - # Replicate the changes to $TGT - echo Starting replication - $LRSYNC -l $LREPL_LOG + # Replicate the changes to $TGT + echo Starting replication + $LRSYNC -l $LREPL_LOG -D $LRSYNC_LOG - check_diff $DIR/$tdir $TGT/$tdir 2b - check_diff $DIR/$tdir $TGT2/$tdir 2b + check_diff $DIR/$tdir $TGT/$tdir + check_diff $DIR/$tdir $TGT2/$tdir fini_changelog cleanup_src_tgt @@ -278,110 +325,110 @@ test_2b() { } run_test 2b "Replicate files changed by dbench." -# Test 2c - Replicate files while dbench is running +# Test 2c - Replicate files while dbench is running test_2c() { - [ "$SLOW" = "no" ] && skip "Skipping slow test" && return - init_src - init_changelog - - # Run dbench - sh rundbench -C -D $DIR/$tdir 2 -t $DBENCH_TIME & - - # Replicate the changes to $TGT - sleep 10 # give dbench a headstart - local quit=0 - while [ $quit -le 1 ]; - do - echo "Running lustre_rsync" - $LRSYNC -s $DIR -t $TGT -t $TGT2 -m ${mds1_svc} -u $CL_USER -l $LREPL_LOG - sleep 5 - pgrep dbench - if [ $? -ne 0 ]; then - quit=$(expr $quit + 1) - fi - done + init_src + init_changelog + + # Run dbench + sh rundbench -C -D $DIR/$tdir 2 -t $DBENCH_TIME & + + local LRSYNC_LOG=$(generate_logname "lrsync_log") + # Replicate the changes to $TGT + sleep 10 # give dbench a headstart + local quit=0 + while [ $quit -le 1 ]; + do + echo "Running lustre_rsync" + $LRSYNC -s $DIR -t $TGT -t $TGT2 -m ${mds1_svc} -u $CL_USER \ + -l $LREPL_LOG -D $LRSYNC_LOG + sleep 5 + pgrep dbench + if [ $? -ne 0 ]; then + quit=$(expr $quit + 1) + fi + done - # Use diff to compare the source and the destination - check_diff $DIR/$tdir $TGT/$tdir 2c - check_diff $DIR/$tdir $TGT2/$tdir 2c + # Use diff to compare the source and the destination + check_diff $DIR/$tdir $TGT/$tdir + check_diff $DIR/$tdir $TGT2/$tdir - fini_changelog - cleanup_src_tgt - return 0 + fini_changelog + cleanup_src_tgt + return 0 } run_test 2c "Replicate files while dbench is running." # Test 3a - Replicate files created by createmany test_3a() { - [ "$SLOW" = "no" ] && skip "Skipping slow test" && return - - init_src - init_changelog - - local numfiles=1000 - createmany -o $DIR/$tdir/$tfile $numfiles || error "createmany failed!" - - # Replicate the changes to $TGT - $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG - check_diff $DIR/$tdir $TGT/$tdir 3a - check_diff $DIR/$tdir $TGT2/$tdir 3a - - fini_changelog - cleanup_src_tgt - return 0 + init_src + init_changelog + + local numfiles=1000 + createmany -o $DIR/$tdir/$tfile $numfiles || error "createmany failed" + + local LRSYNC_LOG=$(generate_logname "lrsync_log") + # Replicate the changes to $TGT + $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG \ + -D $LRSYNC_LOG + check_diff $DIR/$tdir $TGT/$tdir + check_diff $DIR/$tdir $TGT2/$tdir + + fini_changelog + cleanup_src_tgt + return 0 } run_test 3a "Replicate files created by createmany" # Test 3b - Replicate files created by writemany test_3b() { - [ "$SLOW" = "no" ] && skip "Skipping slow test" && return - - init_src - init_changelog + init_src + init_changelog - local time=60 - local threads=5 - writemany -q -a $DIR/$tdir/$tfile $time $threads || error "writemany failed!" + local time=60 + local threads=5 + writemany -q -a $DIR/$tdir/$tfile $time $threads || + error "writemany failed" - # Replicate the changes to $TGT - $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG + local LRSYNC_LOG=$(generate_logname "lrsync_log") + # Replicate the changes to $TGT + $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG \ + -D $LRSYNC_LOG - check_diff $DIR/$tdir $TGT/$tdir 3b - check_diff $DIR/$tdir $TGT2/$tdir 3b + check_diff $DIR/$tdir $TGT/$tdir + check_diff $DIR/$tdir $TGT2/$tdir - fini_changelog - cleanup_src_tgt - return 0 + fini_changelog + cleanup_src_tgt + return 0 } run_test 3b "Replicate files created by writemany" # Test 3c - Replicate files created by createmany/unlinkmany test_3c() { - [ "$SLOW" = "no" ] && skip "Skipping slow test" && return - - init_src - init_changelog - - local numfiles=1000 - createmany -o $DIR/$tdir/$tfile $numfiles || error "createmany failed!" - unlinkmany $DIR/$tdir/$tfile $numfiles || error "unlinkmany failed!" - - # Replicate the changes to $TGT - $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG - check_diff $DIR/$tdir $TGT/$tdir 3c - check_diff $DIR/$tdir $TGT2/$tdir 3c - - fini_changelog - cleanup_src_tgt - return 0 + init_src + init_changelog + + local numfiles=1000 + createmany -o $DIR/$tdir/$tfile $numfiles || error "createmany failed" + unlinkmany $DIR/$tdir/$tfile $numfiles || error "unlinkmany failed" + + local LRSYNC_LOG=$(generate_logname "lrsync_log") + # Replicate the changes to $TGT + $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG \ + -D $LRSYNC_LOG + check_diff $DIR/$tdir $TGT/$tdir + check_diff $DIR/$tdir $TGT2/$tdir + + fini_changelog + cleanup_src_tgt + return 0 } run_test 3c "Replicate files created by createmany/unlinkmany" # Test 4 - Replicate files created by iozone test_4() { - [ "$SLOW" = "no" ] && skip "Skipping slow test" && return - which iozone > /dev/null 2>&1 if [ $? -ne 0 ]; then skip "iozone not found. Skipping test" @@ -397,10 +444,12 @@ test_4() { child_pid=$(pgrep iozone) $KILL -SIGSTOP $child_pid - # Replicate the changes to $TGT - $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG - check_diff $DIR/$tdir $TGT/$tdir 4 - check_diff $DIR/$tdir $TGT2/$tdir 4 + local LRSYNC_LOG=$(generate_logname "lrsync_log") + # Replicate the changes to $TGT + $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG \ + -D $LRSYNC_LOG + check_diff $DIR/$tdir $TGT/$tdir + check_diff $DIR/$tdir $TGT2/$tdir $KILL -SIGCONT $child_pid sleep 60 @@ -419,9 +468,9 @@ test_4() { sleep 1; done - $LRSYNC -l $LREPL_LOG - check_diff $DIR/$tdir $TGT/$tdir 4 - check_diff $DIR/$tdir $TGT2/$tdir 4 + $LRSYNC -l $LREPL_LOG -D $LRSYNC_LOG + check_diff $DIR/$tdir $TGT/$tdir + check_diff $DIR/$tdir $TGT2/$tdir fini_changelog cleanup_src_tgt @@ -431,57 +480,55 @@ run_test 4 "Replicate files created by iozone" # Test 5a - Stop / start lustre_rsync test_5a() { - [ "$SLOW" = "no" ] && skip "Skipping slow test" && return - - init_src - init_changelog - - NUMTEST=2000 - createmany -o $DIR/$tdir/$tfile $NUMTEST - - # Replicate the changes to $TGT - - $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG & - local child_pid=$! - sleep 30 - $KILL -SIGHUP $child_pid - wait - $LRSYNC -l $LREPL_LOG - - check_diff $DIR/$tdir $TGT/$tdir 5a - check_diff $DIR/$tdir $TGT2/$tdir 5a - - fini_changelog - cleanup_src_tgt - return 0 + init_src + init_changelog + + NUMTEST=2000 + createmany -o $DIR/$tdir/$tfile $NUMTEST + + # Replicate the changes to $TGT + local LRSYNC_LOG=$(generate_logname "lrsync_log") + $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG \ + -D $LRSYNC_LOG & + local child_pid=$! + sleep 30 + $KILL -SIGHUP $child_pid + wait + $LRSYNC -l $LREPL_LOG -D $LRSYNC_LOG + + check_diff $DIR/$tdir $TGT/$tdir + check_diff $DIR/$tdir $TGT2/$tdir + + fini_changelog + cleanup_src_tgt + return 0 } run_test 5a "Stop / start lustre_rsync" # Test 5b - Kill / restart lustre_rsync test_5b() { - [ "$SLOW" = "no" ] && skip "Skipping slow test" && return - - init_src - init_changelog - - NUMTEST=2000 - createmany -o $DIR/$tdir/$tfile $NUMTEST - - # Replicate the changes to $TGT - - $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG & - local child_pid=$! - sleep 30 - $KILL -SIGKILL $child_pid - wait - $LRSYNC -l $LREPL_LOG - - check_diff $DIR/$tdir $TGT/$tdir 5b - check_diff $DIR/$tdir $TGT2/$tdir 5b - - fini_changelog - cleanup_src_tgt - return 0 + init_src + init_changelog + + NUMTEST=2000 + createmany -o $DIR/$tdir/$tfile $NUMTEST + + # Replicate the changes to $TGT + local LRSYNC_LOG=$(generate_logname "lrsync_log") + $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG \ + -D $LRSYNC_LOG & + local child_pid=$! + sleep 30 + $KILL -SIGKILL $child_pid + wait + $LRSYNC -l $LREPL_LOG -D $LRSYNC_LOG + + check_diff $DIR/$tdir $TGT/$tdir + check_diff $DIR/$tdir $TGT2/$tdir + + fini_changelog + cleanup_src_tgt + return 0 } run_test 5b "Kill / restart lustre_rsync" @@ -499,10 +546,12 @@ test_6() { i=$(expr $i + 1) done - # Replicate the changes to $TGT - $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG - check_diff $DIR/$tdir $TGT/$tdir 6 - check_diff $DIR/$tdir $TGT2/$tdir 6 + local LRSYNC_LOG=$(generate_logname "lrsync_log") + # Replicate the changes to $TGT + $LRSYNC -s $DIR -t $TGT -t $TGT2 -m $MDT0 -u $CL_USER -l $LREPL_LOG \ + -D $LRSYNC_LOG + check_diff $DIR/$tdir $TGT/$tdir + check_diff $DIR/$tdir $TGT2/$tdir local count1=$(ls -l $TGT/$tdir/link0 | sed -r 's/ +/ /g' | cut -f 2 -d ' ') local count2=$(ls -l $TGT/$tdir/link0 | sed -r 's/ +/ /g' | cut -f 2 -d ' ') @@ -526,26 +575,29 @@ test_7() { lfs setstripe -c $OSTCOUNT $DIR/$tdir createmany -o $DIR/$tdir/$tfile $NUMFILES - # To simulate replication to another lustre filesystem, replicate - # the changes to $DIR/tgt. We can't turn off the changelogs - # while we are registered, so lustre_rsync better not try to - # replicate the replication steps. It seems ok :) - - $LRSYNC -s $DIR -t $DIR/tgt -m $MDT0 -u $CL_USER -l $LREPL_LOG - check_diff ${DIR}/$tdir $DIR/tgt/$tdir 7 - - local i=0 - while [ $i -lt $NUMFILES ]; - do - local count=$(lfs getstripe $DIR/tgt/$tdir/${tfile}$i | awk '/stripe_count/ {print $2}') - if [ $count -ne $OSTCOUNT ]; then - error "Stripe size not replicated" - fi - i=$(expr $i + 1) - done - fini_changelog - cleanup_src_tgt - return 0 + # To simulate replication to another lustre filesystem, replicate + # the changes to $DIR/tgt. We can't turn off the changelogs + # while we are registered, so lustre_rsync better not try to + # replicate the replication steps. It seems ok :) + + local LRSYNC_LOG=$(generate_logname "lrsync_log") + $LRSYNC -s $DIR -t $DIR/tgt -m $MDT0 -u $CL_USER -l $LREPL_LOG \ + -D $LRSYNC_LOG + check_diff ${DIR}/$tdir $DIR/tgt/$tdir + + local i=0 + while [ $i -lt $NUMFILES ]; + do + local count=$(lfs getstripe $DIR/tgt/$tdir/${tfile}$i | \ + awk '/stripe_count/ {print $2}') + if [ $count -ne $OSTCOUNT ]; then + error "Stripe size not replicated" + fi + i=$(expr $i + 1) + done + fini_changelog + cleanup_src_tgt + return 0 } run_test 7 "lustre_rsync stripesize" @@ -568,9 +620,11 @@ test_8() { mv $DIR/$tdir/d$i $DIR/$tdir/d0$i done - $LRSYNC -s $DIR -t $TGT -m $MDT0 -u $CL_USER -l $LREPL_LOG + local LRSYNC_LOG=$(generate_logname "lrsync_log") + $LRSYNC -s $DIR -t $TGT -m $MDT0 -u $CL_USER -l $LREPL_LOG \ + -D $LRSYNC_LOG - check_diff ${DIR}/$tdir $TGT/$tdir 8 + check_diff ${DIR}/$tdir $TGT/$tdir fini_changelog cleanup_src_tgt @@ -585,15 +639,18 @@ test_9() { mkdir $DIR/$tdir/foo touch $DIR/$tdir/foo/a1 - $LRSYNC -s $DIR -t $TGT -m $MDT0 -u $CL_USER -l $LREPL_LOG + local LRSYNC_LOG=$(generate_logname "lrsync_log") + $LRSYNC -s $DIR -t $TGT -m $MDT0 -u $CL_USER -l $LREPL_LOG \ + -D $LRSYNC_LOG - check_diff ${DIR}/$tdir $TGT/$tdir 9 + check_diff ${DIR}/$tdir $TGT/$tdir - rm -rf $DIR/$tdir/foo + rm -rf $DIR/$tdir/foo - $LRSYNC -s $DIR -t $TGT -m $MDT0 -u $CL_USER -l $LREPL_LOG + $LRSYNC -s $DIR -t $TGT -m $MDT0 -u $CL_USER -l $LREPL_LOG \ + -D $LRSYNC_LOG - check_diff ${DIR}/$tdir $TGT/$tdir 9 + check_diff ${DIR}/$tdir $TGT/$tdir fini_changelog cleanup_src_tgt @@ -602,6 +659,6 @@ test_9() { run_test 9 "Replicate recursive directory removal" cd $ORIG_PWD -complete $(basename $0) $SECONDS +complete $SECONDS check_and_cleanup_lustre exit_status