OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:max_failures
(Results
1 - 4
of
4
) sorted by null
/external/ltp/tools/pounder21/
infinite_loop.c
53
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
61
char *max_failures_env = getenv("
MAX_FAILURES
");
62
max_failures
= atoi(max_failures_env);
64
//if the -m option is used when calling infinite_loop, override
max_failures
65
//specified by $
MAX_FAILURES
with the given argument instead
67
if ((
max_failures
= atoi(argv[2])) >= 0) {
70
printf("Usage: %s [-m
max_failures
] command [args]\n"
[
all
...]
timed_loop.c
67
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
77
char *max_failures_env = getenv("
MAX_FAILURES
");
78
max_failures
= atoi(max_failures_env);
80
//if the -m option is used when calling timed_loop, override
max_failures
81
//specified by $
MAX_FAILURES
with the given argument instead
83
if ((
max_failures
= atoi(argv[2])) >= 0) {
87
("Usage: %s [-m
max_failures
] time_in_sec command [args]\n"
[
all
...]
fancy_timed_loop.c
65
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
75
char *max_failures_env = getenv("
MAX_FAILURES
");
76
max_failures
= atoi(max_failures_env);
78
//if the -m option is used when calling fancy_timed_loop, override
max_failures
79
//specified by $
MAX_FAILURES
with the given argument instead
81
if ((
max_failures
= atoi(argv[2])) >= 0) {
85
("Usage: %s [-m
max_failures
] time_in_sec uid gid signal command [args]\n"
[
all
...]
pounder
36
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]
185
m) export
MAX_FAILURES
="$OPTARG";;
Completed in 625 milliseconds