Searched refs:max_failures (Results 1 - 4 of 4) sorted by relevance

/external/ltp/tools/pounder21/
H A Dinfinite_loop.c53 int max_failures = 0; local
57 printf("Usage: %s [-m max_failures] command [args]\n", argv[0]);
60 //by default, set max_failures to whatever the env variable $MAX_FAILURES is
62 max_failures = atoi(max_failures_env);
64 //if the -m option is used when calling infinite_loop, override max_failures
67 if ((max_failures = atoi(argv[2])) >= 0) {
70 printf("Usage: %s [-m max_failures] command [args]\n",
73 ("max_failures should be a nonnegative integer\n");
163 if (max_failures > 0) {
164 if (++fail_counter > max_failures) {
[all...]
H A Dtimed_loop.c67 int max_failures = 0; local
72 ("Usage: %s [-m max_failures] time_in_sec command [args]\n",
76 //by default, set max_failures to whatever the env variable $MAX_FAILURES is
78 max_failures = atoi(max_failures_env);
80 //if the -m option is used when calling timed_loop, override max_failures
83 if ((max_failures = atoi(argv[2])) >= 0) {
87 ("Usage: %s [-m max_failures] time_in_sec command [args]\n",
90 ("max_failures should be a nonnegative integer\n");
189 if (max_failures > 0) {
190 if (++fail_counter > max_failures) {
[all...]
H A Dfancy_timed_loop.c65 int max_failures = 0; local
70 ("Usage: %s [-m max_failures] time_in_sec uid gid signal command [args]\n",
74 //by default, set max_failures to whatever the env variable $MAX_FAILURES is
76 max_failures = atoi(max_failures_env);
78 //if the -m option is used when calling fancy_timed_loop, override max_failures
81 if ((max_failures = atoi(argv[2])) >= 0) {
85 ("Usage: %s [-m max_failures] time_in_sec uid gid signal command [args]\n",
88 ("max_failures should be a nonnegative integer\n");
210 if (max_failures > 0) {
211 if (++fail_counter > max_failures) {
[all...]
H A Dpounder36 Usage: ./pounder [-g logdir] [-x] [-d duration] [-n ipaddr] [-m max_failures] [-f] [-h|-u|-r|-k|-l|-e subtests|-i subtests|-c scheduler] [-s]

Completed in 205 milliseconds