Searched refs:max_runtime (Results 1 – 25 of 84) sorted by relevance
1234
/third_party/ltp/lib/newlib_tests/shell/ |
D | test_timeout.sh | 117 max_runtime=$(echo $d | cut -d'|' -f4 | xargs) 118 max_runtime=${max_runtime:--1} 140 if [ $max_runtime -ne -1 ] && [ $test_duration -gt $max_runtime ]; then 141 echo "FAILED (runtime: $test_duration, expected less than $max_runtime)"
|
/third_party/ltp/lib/ |
D | tst_test.c | 71 int max_runtime; member 495 static int multiply_runtime(int max_runtime) in multiply_runtime() argument 499 if (max_runtime <= 0) in multiply_runtime() 500 return max_runtime; in multiply_runtime() 504 return max_runtime * runtime_mul; in multiply_runtime() 542 if (tst_test->max_runtime) { in print_help() 543 runtime = multiply_runtime(tst_test->max_runtime); in print_help() 690 if (tst_test->max_runtime > 0) in parse_opts() 691 tst_test->max_runtime = SAFE_STRTOL(optarg, 1, INT_MAX); in parse_opts() 1143 if (tst_test->max_runtime < -1) { in do_setup() [all …]
|
/third_party/ltp/testcases/kernel/syscalls/set_mempolicy/ |
D | set_mempolicy01.c | 46 tst_set_max_runtime(test.max_runtime * (1 << nodes->cnt/16)); in setup() 122 .max_runtime = 600,
|
/third_party/ltp/doc/ |
D | User-Guidelines.asciidoc | 50 The limit on how long a test can run does compose of two parts max_runtime and 55 The max_runtime is a cap on how long the run() function can take, for most 57 second or two the max_runtime has to be defined and the run() function has to
|
/third_party/ltp/include/ |
D | tst_test.h | 283 int max_runtime; member 369 void tst_set_max_runtime(int max_runtime);
|
/third_party/ltp/lib/newlib_tests/ |
D | test_runtime02.c | 27 .max_runtime = 5,
|
D | test_runtime01.c | 28 .max_runtime = 4,
|
/third_party/ltp/testcases/kernel/mem/oom/ |
D | oom01.c | 55 .max_runtime = TST_UNLIMITED_RUNTIME,
|
D | oom02.c | 64 .max_runtime = TST_UNLIMITED_RUNTIME,
|
D | oom04.c | 85 .max_runtime = TST_UNLIMITED_RUNTIME,
|
D | oom03.c | 89 .max_runtime = TST_UNLIMITED_RUNTIME,
|
D | oom05.c | 107 .max_runtime = TST_UNLIMITED_RUNTIME,
|
/third_party/ltp/testcases/kernel/crypto/ |
D | pcrypt_aead01.c | 78 .max_runtime = 300,
|
D | af_alg02.c | 80 .max_runtime = 20,
|
/third_party/ltp/testcases/kernel/syscalls/readahead/ |
D | readahead02.c | 333 tst_set_max_runtime(test.max_runtime + (usec + usec_ra) / 1000000); in test_readahead() 425 .max_runtime = 30,
|
/third_party/ltp/testcases/kernel/syscalls/gettimeofday/ |
D | gettimeofday02.c | 75 .max_runtime = 10,
|
/third_party/ltp/testcases/kernel/syscalls/inotify/ |
D | inotify09.c | 97 .max_runtime = 150,
|
/third_party/ltp/testcases/kernel/mem/ksm/ |
D | ksm02.c | 117 .max_runtime = 32,
|
D | ksm04.c | 119 .max_runtime = 32,
|
/third_party/ltp/testcases/kernel/pty/ |
D | pty06.c | 100 .max_runtime = 150,
|
D | pty05.c | 100 .max_runtime = 150,
|
/third_party/ltp/testcases/kernel/syscalls/fork/ |
D | fork13.c | 113 .max_runtime = 600,
|
/third_party/ltp/testcases/kernel/syscalls/perf_event_open/ |
D | perf_event_open03.c | 111 .max_runtime = 300,
|
/third_party/ltp/testcases/kernel/syscalls/ipc/shmctl/ |
D | shmctl05.c | 109 .max_runtime = 10,
|
/third_party/ltp/testcases/kernel/io/ltp-aiodio/ |
D | dio_append.c | 96 .max_runtime = 1800,
|
1234