autotest.sh: add hello_blob to BlobFS tests

Hello_blob example was never run before in autotest.

Change-Id: I1f858bed816471efed947f06107cec981dd562a4
Signed-off-by: Karol Latecki <karol.latecki@intel.com>
Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/481570
Community-CI: SPDK CI Jenkins <sys_sgci@intel.com>
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
This commit is contained in:
Karol Latecki 2020-01-14 08:43:35 +01:00 committed by Tomasz Zawadzki
parent f1687a1bd2
commit 917976766d
2 changed files with 3 additions and 1 deletions

View File

@ -212,6 +212,8 @@ if [ $SPDK_RUN_FUNCTIONAL_TEST -eq 1 ]; then
run_test "rocksdb" ./test/blobfs/rocksdb/rocksdb.sh run_test "rocksdb" ./test/blobfs/rocksdb/rocksdb.sh
run_test "blobstore" ./test/blobstore/blobstore.sh run_test "blobstore" ./test/blobstore/blobstore.sh
run_test "blobfs" ./test/blobfs/blobfs.sh run_test "blobfs" ./test/blobfs/blobfs.sh
run_test "hello_blob" ./examples/blob/hello_world/hello_blob \
examples/blob/hello_world/hello_blob.conf
fi fi
if [ $SPDK_TEST_NVMF -eq 1 ]; then if [ $SPDK_TEST_NVMF -eq 1 ]; then

View File

@ -459,7 +459,7 @@ main(int argc, char **argv)
* specify a name for the app. * specify a name for the app.
*/ */
opts.name = "hello_blob"; opts.name = "hello_blob";
opts.config_file = "hello_blob.conf"; opts.config_file = argv[1];
/* /*