test: warn if we could not parse the loop count argument

Found by coverity. Fixes: CID#1237512
This commit is contained in:
Thomas Hindoe Paaboel Andersen 2014-09-19 01:43:04 +02:00
parent 8e8af4cfc7
commit cbb452e7ef

View file

@ -31,8 +31,12 @@ int main(int argc, char *argv[]) {
log_set_max_level(LOG_DEBUG);
if (argc >= 2)
safe_atoi(argv[1], &I);
if (argc >= 2) {
r = safe_atoi(argv[1], &I);
if (r < 0)
log_info("Could not parse loop count argument. Using default.");
}
log_info("Running %d loops", I);
assert_se(mkdtemp(t));