Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

selftests/powerpc: Give some tests longer to run

Some of these long running tests can time out on heavily loaded
systems, give them longer to run.

Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>

+6
+1
tools/testing/selftests/powerpc/benchmarks/futex_bench.c
··· 38 38 39 39 int main(void) 40 40 { 41 + test_harness_set_timeout(300); 41 42 return test_harness(test_futex, "futex_bench"); 42 43 }
+2
tools/testing/selftests/powerpc/benchmarks/mmap_bench.c
··· 84 84 exit(1); 85 85 } 86 86 } 87 + 88 + test_harness_set_timeout(300); 87 89 return test_harness(test_mmap, "mmap_bench"); 88 90 }
+1
tools/testing/selftests/powerpc/pmu/ebb/instruction_count_test.c
··· 162 162 163 163 int main(void) 164 164 { 165 + test_harness_set_timeout(300); 165 166 return test_harness(instruction_count, "instruction_count"); 166 167 }
+1
tools/testing/selftests/powerpc/pmu/ebb/lost_exception_test.c
··· 98 98 99 99 int main(void) 100 100 { 101 + test_harness_set_timeout(300); 101 102 return test_harness(lost_exception, "lost_exception"); 102 103 }
+1
tools/testing/selftests/powerpc/stringloops/memcmp.c
··· 154 154 155 155 int main(void) 156 156 { 157 + test_harness_set_timeout(300); 157 158 return test_harness(testcases, "memcmp"); 158 159 }