From 38d3139e70ccbe703e3910e7d64cd0c06dfd00f9 Mon Sep 17 00:00:00 2001 From: phk Date: Mon, 21 Apr 2003 20:16:07 +0000 Subject: Add minimal regression test for hotspot handling of the sunlabel. --- sbin/sunlabel/runtest.sh | 114 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 sbin/sunlabel/runtest.sh (limited to 'sbin/sunlabel') diff --git a/sbin/sunlabel/runtest.sh b/sbin/sunlabel/runtest.sh new file mode 100644 index 0000000..d6ba1a5 --- /dev/null +++ b/sbin/sunlabel/runtest.sh @@ -0,0 +1,114 @@ +#!/bin/sh +# $FreeBSD$ + +TMP=/tmp/$$. +set -e +MD=`mdconfig -a -t malloc -s 2m` +trap "exec 7 /dev/null 2>&1 +./sunlabel $MD > ${TMP}l0 + +sed ' +/ c:/{ +p +s/c:/a:/ +s/3969/1024/ +} +' ${TMP}l0 > ${TMP}l1 + +./sunlabel -R $MD ${TMP}l1 +dd if=/dev/$MD of=${TMP}i1 count=16 > /dev/null 2>&1 +sed ' +/ c:/{ +p +s/c:/a:/ +s/3969/2048/ +} +' ${TMP}l0 > ${TMP}l2 + +./sunlabel -R $MD ${TMP}l2 +dd if=/dev/$MD of=${TMP}i2 count=16 > /dev/null 2>&1 + +exec 7< /dev/${MD}a + +for t in a c +do + if dd if=${TMP}i2 of=/dev/${MD}$t 2>/dev/null ; then + echo "PASS: Could rewrite same label to ...$t while ...a open" 1>&2 + else + echo "FAIL: Could not rewrite same label to ...$t while ...a open" 1>&2 + exit 2 + fi + + if dd if=${TMP}i1 of=/dev/${MD}$t 2>/dev/null ; then + echo "FAIL: Could label with smaller ...a to ...$t while ...a open" 1>&2 + exit 2 + else + echo "PASS: Could not label with smaller ...a to ...$t while ...a open" 1>&2 + fi + + if dd if=${TMP}i0 of=/dev/${MD}$t 2>/dev/null ; then + echo "FAIL: Could write label missing ...a to ...$t while ...a open" 1>&2 + exit 2 + else + echo "PASS: Could not write label missing ...a to ...$t while ...a open" 1>&2 + fi +done + +exec 7< /dev/null + +if dd if=${TMP}i0 of=/dev/${MD}c 2>/dev/null ; then + echo "PASS: Could write missing ...a label to ...c" 1>&2 +else + echo "FAIL: Could not write missing ...a label to ...c" 1>&2 + exit 2 +fi + +if dd if=${TMP}i2 of=/dev/${MD}c 2>/dev/null ; then + echo "PASS: Could write large ...a label to ...c" 1>&2 +else + echo "FAIL: Could not write large ...a label to ...c" 1>&2 + exit 2 +fi + +if dd if=${TMP}i1 of=/dev/${MD}c 2>/dev/null ; then + echo "PASS: Could write small ...a label to ...c" 1>&2 +else + echo "FAIL: Could not write small ...a label to ...c" 1>&2 + exit 2 +fi + +if dd if=${TMP}i2 of=/dev/${MD}a 2>/dev/null ; then + echo "PASS: Could increase size of ...a by writing to ...a" 1>&2 +else + echo "FAIL: Could not increase size of ...a by writing to ...a" 1>&2 + exit 2 +fi + +if dd if=${TMP}i1 of=/dev/${MD}a 2>/dev/null ; then + echo "FAIL: Could decrease size of ...a by writing to ...a" 1>&2 + exit 2 +else + echo "PASS: Could not decrease size of ...a by writing to ...a" 1>&2 +fi + +if dd if=${TMP}i0 of=/dev/${MD}a 2>/dev/null ; then + echo "FAIL: Could delete ...a by writing to ...a" 1>&2 + exit 2 +else + echo "PASS: Could not delete ...a by writing to ...a" 1>&2 +fi + +if dd if=${TMP}i0 of=/dev/${MD}c 2>/dev/null ; then + echo "PASS: Could delete ...a by writing to ...c" 1>&2 +else + echo "FAIL: Could not delete ...a by writing to ...c" 1>&2 + exit 2 +fi + +# XXX: need to add a 'b' partition and check for overlaps. + +exit 0 -- cgit v1.1