2017-11-08 10:06:22 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2019-06-12 07:48:32 +00:00
|
|
|
SYSTEM=$(uname -s)
|
2020-05-07 11:27:06 +00:00
|
|
|
if [ $SYSTEM = "FreeBSD" ]; then
|
|
|
|
echo "blobstore.sh cannot run on FreeBSD currently."
|
|
|
|
exit 0
|
2017-11-08 10:06:22 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
|
|
rootdir=$(readlink -f $testdir/../..)
|
2018-02-27 22:14:08 +00:00
|
|
|
source $rootdir/test/common/autotest_common.sh
|
2017-11-08 10:06:22 +00:00
|
|
|
|
|
|
|
# Nvme0 target configuration
|
2022-07-22 22:40:46 +00:00
|
|
|
"$rootdir/scripts/gen_nvme.sh" --json-with-subsystems -n 1 > "$testdir/blobcli.json"
|
2017-11-08 10:06:22 +00:00
|
|
|
|
2018-01-29 22:33:02 +00:00
|
|
|
# generate random data file for import/export diff
|
|
|
|
dd if=/dev/urandom of=$testdir/test.pattern bs=1M count=1
|
|
|
|
|
2020-05-07 11:27:06 +00:00
|
|
|
(cd $testdir \
|
2020-06-15 08:34:56 +00:00
|
|
|
&& $SPDK_EXAMPLE_DIR/blobcli -j $testdir/blobcli.json -b Nvme0n1 -T $testdir/test.bs > $testdir/btest.out)
|
2018-01-29 22:33:02 +00:00
|
|
|
|
|
|
|
# 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
|
2017-11-08 10:06:22 +00:00
|
|
|
|
2018-01-29 22:33:02 +00:00
|
|
|
rm -rf $testdir/btest.out
|
2020-06-15 08:34:56 +00:00
|
|
|
rm -rf $testdir/blobcli.json
|
2018-01-29 22:33:02 +00:00
|
|
|
rm -rf $testdir/*.blob
|
|
|
|
rm -rf $testdir/test.pattern
|