It's always set in autotest_common.sh, there's no need to set it again in each test script. Change-Id: Ib14c4189c553dad54a3065c1a1d413a5fc5a5347 Signed-off-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com> Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/457466 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
39 lines
1.1 KiB
Bash
Executable File
39 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SYSTEM=$(uname -s)
|
|
if [ $SYSTEM = "FreeBSD" ] ; then
|
|
echo "blobstore.sh cannot run on FreeBSD currently."
|
|
exit 0
|
|
fi
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
timing_enter blobstore
|
|
|
|
# Nvme0 target configuration
|
|
$rootdir/scripts/gen_nvme.sh > $testdir/blobcli.conf
|
|
|
|
# generate random data file for import/export diff
|
|
dd if=/dev/urandom of=$testdir/test.pattern bs=1M count=1
|
|
|
|
cd $testdir
|
|
$rootdir/examples/blob/cli/blobcli -c $testdir/blobcli.conf -b Nvme0n1 -T $testdir/test.bs > $testdir/btest.out
|
|
cd -
|
|
|
|
# the tool leaves some trailing whitespaces that we need to strip out
|
|
sed -i 's/[[:space:]]*$//' $testdir/btest.out
|
|
|
|
# the test script will import the test pattern generated by dd and then export
|
|
# it to a file so we can compare and confirm basic read and write
|
|
$rootdir/test/app/match/match -v $testdir/btest.out.match
|
|
diff $testdir/test.pattern $testdir/test.pattern.blob
|
|
|
|
rm -rf $testdir/btest.out
|
|
rm -rf $testdir/blobcli.conf
|
|
rm -rf $testdir/*.blob
|
|
rm -rf $testdir/test.pattern
|
|
|
|
timing_exit blobstore
|