diff --git a/bench b/bench index 9ec09929..9eafbb8e 100755 --- a/bench +++ b/bench @@ -167,8 +167,8 @@ FULL_MOUNT_OPTIONS=`_scratch_mount_options` # $OUT is the report which will ultimately be sent, keep it tidy. cat >$OUT </dev/null # call the overridden mkfs.xfs - make sure the FS is built # the same as we'll create it later. @@ -164,7 +164,7 @@ then fi FULL_MOUNT_OPTIONS=`_scratch_mount_options` -echo check: MOUNT_OPTIONS -- $FULL_MOUNT_OPTIONS +echo "MOUNT_OPTIONS -- $FULL_MOUNT_OPTIONS" # call the overridden mount - make sure the FS mounts with # the same options that we'll mount with later. if ! _scratch_mount >$tmp.err 2>&1 diff --git a/setup b/setup new file mode 100755 index 00000000..51c941aa --- /dev/null +++ b/setup @@ -0,0 +1,16 @@ +#!/bin/sh +# +if ! . ./common.config +then + echo "check: failed to source common.config" + exit 1 +fi + +use="(external=no)" +[ "$USE_EXTERNAL" = yes ] && use="(external=yes)" + +cat <