* [PATCH] init: fix exit status with bogus arguments
@ 2015-03-12 20:28 Zev Weiss
2015-03-17 21:48 ` Jens Axboe
0 siblings, 1 reply; 2+ messages in thread
From: Zev Weiss @ 2015-03-12 20:28 UTC (permalink / raw)
To: fio; +Cc: Zev Weiss
Had been exiting "successfully" on invalid command-line arguments.
Signed-off-by: Zev Weiss <zev@bewilderbeest.net>
---
init.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/init.c b/init.c
index 7aedf2b..95e26b8 100644
--- a/init.c
+++ b/init.c
@@ -2135,6 +2135,7 @@ int parse_cmd_line(int argc, char *argv[], int client_type)
td = NULL;
}
do_exit++;
+ exit_val = 1;
break;
}
fio_options_set_ioengine_opts(l_opts, td);
@@ -2153,6 +2154,7 @@ int parse_cmd_line(int argc, char *argv[], int client_type)
td = NULL;
}
do_exit++;
+ exit_val = 1;
}
if (!ret && !strcmp(opt, "ioengine")) {
@@ -2161,6 +2163,7 @@ int parse_cmd_line(int argc, char *argv[], int client_type)
put_job(td);
td = NULL;
do_exit++;
+ exit_val = 1;
break;
}
fio_options_set_ioengine_opts(l_opts, td);
--
2.1.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-03-17 21:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-12 20:28 [PATCH] init: fix exit status with bogus arguments Zev Weiss
2015-03-17 21:48 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox