From f9967879c6b22b5c75bbfa4f2a755015f46ce053 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Thu, 8 Sep 2016 10:09:59 -0700 Subject: [PATCH] test/nvmf: disable trace log level The trace logs were useful during development, but now that the target is working reliably, we can make the test output quieter and shorter by turning them off. Change-Id: I46cd2e22a3ccd69a5f94a1843b722f517223a343 Signed-off-by: Daniel Verkamp --- test/nvmf/discovery/discovery.sh | 2 +- test/nvmf/fio/fio.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/nvmf/discovery/discovery.sh b/test/nvmf/discovery/discovery.sh index 3dce3cfec..54e8c3635 100755 --- a/test/nvmf/discovery/discovery.sh +++ b/test/nvmf/discovery/discovery.sh @@ -20,7 +20,7 @@ fi timing_enter discovery # Start up the NVMf target in another process -$rootdir/app/nvmf_tgt/nvmf_tgt -c $testdir/../nvmf.conf -t nvmf -t rdma & +$rootdir/app/nvmf_tgt/nvmf_tgt -c $testdir/../nvmf.conf & nvmfpid=$! trap "killprocess $nvmfpid; exit 1" SIGINT SIGTERM EXIT diff --git a/test/nvmf/fio/fio.sh b/test/nvmf/fio/fio.sh index 3722ae867..98e072faf 100755 --- a/test/nvmf/fio/fio.sh +++ b/test/nvmf/fio/fio.sh @@ -15,7 +15,7 @@ fi timing_enter fio # Start up the NVMf target in another process -$rootdir/app/nvmf_tgt/nvmf_tgt -c $testdir/../nvmf.conf -t nvmf -t rdma & +$rootdir/app/nvmf_tgt/nvmf_tgt -c $testdir/../nvmf.conf & nvmfpid=$! trap "killprocess $nvmfpid; exit 1" SIGINT SIGTERM EXIT