diff options
author | jimharris <jimharris@FreeBSD.org> | 2013-11-05 15:52:38 +0000 |
---|---|---|
committer | jimharris <jimharris@FreeBSD.org> | 2013-11-05 15:52:38 +0000 |
commit | e0562150fc1b95c93fd8f4cf4d578c184b61ec77 (patch) | |
tree | 1717254d5d0f9c6b613624fa88cd9894114219f6 /sbin | |
parent | 46533baffa016b991addde56036a57c2257f3578 (diff) | |
download | FreeBSD-src-e0562150fc1b95c93fd8f4cf4d578c184b61ec77.zip FreeBSD-src-e0562150fc1b95c93fd8f4cf4d578c184b61ec77.tar.gz |
MFC r257531:
Do not exit with error status after printing data for perftest.
Sponsored by: Intel
Approved by: re (glebius)
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/nvmecontrol/perftest.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sbin/nvmecontrol/perftest.c b/sbin/nvmecontrol/perftest.c index 15e4975..cc91198 100644 --- a/sbin/nvmecontrol/perftest.c +++ b/sbin/nvmecontrol/perftest.c @@ -64,8 +64,6 @@ print_perftest(struct nvme_io_test *io_test, bool perthread) for (i = 0; i < io_test->num_threads; i++) printf("\t%3d: %8ju IO/s\n", i, (uintmax_t)io_test->io_completed[i]/io_test->time); - - exit(1); } static void |