From f8f830cbe72ebe4d9a650c0599b0cec80052c65f Mon Sep 17 00:00:00 2001 From: Hiroshi Yamauchi Date: Fri, 21 Oct 2016 13:07:18 -0700 Subject: [PATCH] Reduce the number of dumps in 130-hprof. To avoid timeouts. Test: test-art-host with ART_TEST_TRACE=true. Change-Id: I849007b94341f4851c11a8896889f9e2ce851a86 --- test/130-hprof/src/Main.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/130-hprof/src/Main.java b/test/130-hprof/src/Main.java index c04bb8631..5899dd118 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(); } -- 2.11.0