Add verbosity to a failing bench QA script.

This commit is contained in:
fsgqa
2003-05-15 01:52:19 +00:00
parent 16f3cf713f
commit 2ea66fa4aa
+2
View File
@@ -91,11 +91,13 @@ _fail()
bench_mkfs_xfs()
{
mkfs_xfs -f $extra_mkfs_options $@
[ $? -ne 0 ] && _fail "mkfs [$extra_mkfs_options] FAILED"
}
bench_mount_xfs()
{
mount -t xfs $extra_mount_options $@
[ $? -ne 0 ] && _fail "mount [$extra_mount_options] FAILED"
}
_run_benchmark()