summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMatthew Wilcox <mawilcox@microsoft.com>2017-01-29 02:27:24 -0500
committerMatthew Wilcox <mawilcox@microsoft.com>2017-02-07 13:25:40 -0500
commit12d3b9b904e8ab18c1d33f083fd43b5a5b19abe9 (patch)
tree2c13de552be3b955e05a908878d038a07a0ac9f1 /tools
parent3a251b43ae53078969525627df835e9dea5313ba (diff)
radix tree test suite: Run iteration tests for longer
If the -l flag is set, run the tests for 100 seconds each instead of the normal 10 seconds. Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/testing/radix-tree/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/radix-tree/main.c b/tools/testing/radix-tree/main.c
index 86de448b699e..b829127d5670 100644
--- a/tools/testing/radix-tree/main.c
+++ b/tools/testing/radix-tree/main.c
@@ -365,8 +365,8 @@ int main(int argc, char **argv)
regression1_test();
regression2_test();
regression3_test();
- iteration_test(0, 10);
- iteration_test(7, 20);
+ iteration_test(0, 10 + 90 * long_run);
+ iteration_test(7, 10 + 90 * long_run);
single_thread_tests(long_run);
/* Free any remaining preallocated nodes */