diff mbox series

[blktests,08/11] nvme/035: Add test to verify passthru controller with a filesystem

Message ID 20200827194912.6135-9-logang@deltatee.com (mailing list archive)
State New, archived
Headers show
Series NVMe Target Passthru Block Tests | expand

Commit Message

Logan Gunthorpe Aug. 27, 2020, 7:49 p.m. UTC
This is a similar test as nvme/012 and nvme/013, except with a
passthru controller.

Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
---
 tests/nvme/035     | 39 +++++++++++++++++++++++++++++++++++++++
 tests/nvme/035.out |  2 ++
 2 files changed, 41 insertions(+)
 create mode 100755 tests/nvme/035
 create mode 100644 tests/nvme/035.out
diff mbox series

Patch

diff --git a/tests/nvme/035 b/tests/nvme/035
new file mode 100755
index 000000000000..de5f57c9b95f
--- /dev/null
+++ b/tests/nvme/035
@@ -0,0 +1,39 @@ 
+#!/bin/bash
+# SPDX-License-Identifier: GPL-3.0+
+# Copyright (C) 2019 Logan Gunthorpe
+# Copyright (C) 2019 Eideticom Communications Inc.
+
+. tests/nvme/rc
+. common/xfs
+
+DESCRIPTION="run mkfs and data verification fio job on an NVMeOF passthru controller"
+TIMED=1
+
+requires() {
+	_have_program nvme &&
+	_have_modules nvme-loop nvmet &&
+	_have_configfs &&
+	_have_kernel_option NVME_TARGET_PASSTHRU &&
+	_have_xfs &&
+	_have_fio
+}
+
+test_device() {
+	local subsys="blktests-subsystem-1"
+	local ctrldev
+	local nsdev
+	local port
+
+	echo "Running ${TEST_NAME}"
+
+	_setup_nvmet
+	port=$(_nvmet_passthru_target_setup "$subsys")
+	nsdev=$(_nvmet_passthru_target_connect "$subsys")
+
+	_xfs_run_fio_verify_io "${nsdev}"
+
+	_nvmet_passthru_target_disconnect "$subsys"
+	_nvmet_passthru_target_cleanup "$port" "$subsys"
+
+	echo "Test complete"
+}
diff --git a/tests/nvme/035.out b/tests/nvme/035.out
new file mode 100644
index 000000000000..455110c046a5
--- /dev/null
+++ b/tests/nvme/035.out
@@ -0,0 +1,2 @@ 
+Running nvme/035
+Test complete