8c3e71f0f9
gen_nvme.sh will no longer generate the legacy configuration. "--json" option will still work for any current users of the script. Tests were modified to no longer use the "--json" option. Meanwhile others were simplified with switch to "--json-with-subsystems". Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Change-Id: I8450be98660e54c64c27d8401fc40d649f9403ea Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/4802 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Paul Luse <paul.e.luse@intel.com>
31 lines
967 B
Bash
Executable File
31 lines
967 B
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
|
|
|
|
# Nvme0 target configuration
|
|
$rootdir/scripts/gen_nvme.sh --json-with-subsystems > $testdir/blobcli.json
|
|
|
|
# generate random data file for import/export diff
|
|
dd if=/dev/urandom of=$testdir/test.pattern bs=1M count=1
|
|
|
|
(cd $testdir \
|
|
&& $SPDK_EXAMPLE_DIR/blobcli -j $testdir/blobcli.json -b Nvme0n1 -T $testdir/test.bs > $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.json
|
|
rm -rf $testdir/*.blob
|
|
rm -rf $testdir/test.pattern
|