aboutsummaryrefslogtreecommitdiff
path: root/tools/test
diff options
context:
space:
mode:
authorPeter Holm <pho@FreeBSD.org>2022-02-16 09:20:39 +0000
committerPeter Holm <pho@FreeBSD.org>2022-02-16 09:20:39 +0000
commit87000c893c2474c7ac47e2934e1773df921c4732 (patch)
tree05e0af990c553943d4dfa103fd1589092fef34cb /tools/test
parentaf8b51b0bac932fd0bb80cc1fe672b725bd5f0e8 (diff)
downloadsrc-87000c893c2474c7ac47e2934e1773df921c4732.tar.gz
src-87000c893c2474c7ac47e2934e1773df921c4732.zip
stress2: Finish work on two gunion(8) test scenarios
Diffstat (limited to 'tools/test')
-rwxr-xr-xtools/test/stress2/misc/gunion.sh5
-rwxr-xr-xtools/test/stress2/misc/gunion2.sh7
2 files changed, 6 insertions, 6 deletions
diff --git a/tools/test/stress2/misc/gunion.sh b/tools/test/stress2/misc/gunion.sh
index 6ba60de3f988..c7d376e5409e 100755
--- a/tools/test/stress2/misc/gunion.sh
+++ b/tools/test/stress2/misc/gunion.sh
@@ -43,7 +43,7 @@ s=0
set -e
mdconfig -a -t swap -s 5g -u $md1
-newfs $newfs_flags -n /dev/md$md1
+newfs $newfs_flags -n /dev/md$md1 > /dev/null
mkdir -p $mp1 $mp2
mount /dev/md$md1 $mp1
cp -r ../../stress2 $mp1
@@ -73,9 +73,10 @@ fsck_ffs -fyR /dev/md$md2-md$md1.union > $log 2>&1
grep -Eq "IS CLEAN|MARKED CLEAN" $log || { s=2; cat $log; }
set +e
gunion commit /dev/md$md2-md$md1.union
+gunion list | egrep Block\|Current | egrep -v 0 && s=3
gunion destroy /dev/md$md2-md$md1.union
fsck_ffs -fyR /dev/md$md1 > $log 2>&1
-grep -Eq "IS CLEAN|MARKED CLEAN" $log || { s=3; cat $log; }
+grep -Eq "IS CLEAN|MARKED CLEAN" $log || { s=4; cat $log; }
mdconfig -d -u $md2
mdconfig -d -u $md1
rm -f $log
diff --git a/tools/test/stress2/misc/gunion2.sh b/tools/test/stress2/misc/gunion2.sh
index e6a7ab6331cb..a8fe180c48af 100755
--- a/tools/test/stress2/misc/gunion2.sh
+++ b/tools/test/stress2/misc/gunion2.sh
@@ -43,7 +43,7 @@ s=0
set -e
mdconfig -a -t swap -s 5g -u $md1
-newfs $newfs_flags -n /dev/md$md1 > /dev/null
+newfs -n /dev/md$md1 > /dev/null
mkdir -p $mp1 $mp2
mount /dev/md$md1 $mp1
cp -r ../../stress2 $mp1
@@ -84,8 +84,6 @@ chmod 777 $mntpoint
su $testuser -c \
"(cd $mntpoint/stress2; ./testcases/run/run $TESTPROGS)"
-n=`find $mntpoint/stressX | wc -l`
-[ $n -eq 1 ] && s=0 || s=1
for i in `jot 6`; do
mount | grep -q "on $mntpoint " || break
umount $mntpoint && break || sleep 10
@@ -96,9 +94,10 @@ fsck_ffs -fyR /dev/md$md2-md$md1.union > $log 2>&1
grep -Eq "IS CLEAN|MARKED CLEAN" $log || { s=2; cat $log; }
set +e
gunion commit /dev/md$md2-md$md1.union
+gunion list | egrep Block\|Current | egrep -v 0 && s=3
gunion destroy /dev/md$md2-md$md1.union
fsck_ffs -fyR /dev/md$md1 > $log 2>&1
-grep -Eq "IS CLEAN|MARKED CLEAN" $log || { s=3; cat $log; }
+grep -Eq "IS CLEAN|MARKED CLEAN" $log || { s=4; cat $log; }
mdconfig -d -u $md2
mdconfig -d -u $md1
rm -f $log