From 2ea66fa4aa0d5cd150930d60afc2e748a320aba4 Mon Sep 17 00:00:00 2001 From: fsgqa Date: Thu, 15 May 2003 01:52:19 +0000 Subject: [PATCH] Add verbosity to a failing bench QA script. --- bench | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bench b/bench index f1acdc2b..4b5a5410 100755 --- a/bench +++ b/bench @@ -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() -- 2.30.2