]> www.infradead.org Git - users/hch/blktests.git/commitdiff
nvme/034: Add test for passthru data verification
authorLogan Gunthorpe <logang@deltatee.com>
Thu, 8 Oct 2020 16:40:20 +0000 (10:40 -0600)
committerOmar Sandoval <osandov@fb.com>
Thu, 22 Oct 2020 21:46:20 +0000 (14:46 -0700)
Similar to test nvme/010 and nvme/011 but for a passthru controller

Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
tests/nvme/034 [new file with mode: 0755]
tests/nvme/034.out [new file with mode: 0644]

diff --git a/tests/nvme/034 b/tests/nvme/034
new file mode 100755 (executable)
index 0000000..f92e5e2
--- /dev/null
@@ -0,0 +1,35 @@
+#!/bin/bash
+# SPDX-License-Identifier: GPL-3.0+
+# Copyright (C) 2019 Logan Gunthorpe
+# Copyright (C) 2019 Eideticom Communications Inc.
+
+. tests/nvme/rc
+
+DESCRIPTION="run data verification fio job on an NVMeOF passthru controller"
+TIMED=1
+
+requires() {
+       _nvme_requires
+       _have_kernel_option NVME_TARGET_PASSTHRU
+       _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 "${nvme_trtype}" "${subsys}")
+
+       _run_fio_verify_io --size=950m --filename="${nsdev}"
+
+       _nvme_disconnect_subsys "${subsys}"
+       _nvmet_passthru_target_cleanup "${port}" "${subsys}"
+
+       echo "Test complete"
+}
diff --git a/tests/nvme/034.out b/tests/nvme/034.out
new file mode 100644 (file)
index 0000000..0a7bd2f
--- /dev/null
@@ -0,0 +1,3 @@
+Running nvme/034
+NQN:blktests-subsystem-1 disconnected 1 controller(s)
+Test complete