diff options
| author | 2016-10-21 13:07:18 -0700 | |
|---|---|---|
| committer | 2016-10-21 13:07:18 -0700 | |
| commit | f8f830cbe72ebe4d9a650c0599b0cec80052c65f (patch) | |
| tree | e42185a7aa9f3bb627b72eeffeec562b44b2e6a6 | |
| parent | 2a1019d34a75e74af65d09b26b99a3647f9cc901 (diff) | |
Reduce the number of dumps in 130-hprof.
To avoid timeouts.
Test: test-art-host with ART_TEST_TRACE=true.
Change-Id: I849007b94341f4851c11a8896889f9e2ce851a86
| -rw-r--r-- | test/130-hprof/src/Main.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/130-hprof/src/Main.java b/test/130-hprof/src/Main.java index c04bb86313..5899dd1183 100644 --- a/test/130-hprof/src/Main.java +++ b/test/130-hprof/src/Main.java @@ -166,7 +166,7 @@ public class Main { } Allocator allocator; public void run() { - for (int i = 0; i < 10; ++i) { + for (int i = 0; i < 5; ++i) { Main.sleep(1000L); createDumpAndConv(); } |