From bedfe071e54ac7b654fe1ceafe33fe6a37ab5956 Mon Sep 17 00:00:00 2001 From: Yoshito Umaoka Date: Mon, 4 Jan 2010 15:19:23 +0000 Subject: [PATCH] ICU-7027 Changed the iteration time used by Test05_ConcurrentEverything to fit in the default unit test time threshold (10sec). X-SVN-Rev: 27124 --- .../src/com/ibm/icu/dev/test/util/ICUServiceThreadTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ICUServiceThreadTest.java b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ICUServiceThreadTest.java index b7809f552a3..918c1c68744 100644 --- a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ICUServiceThreadTest.java +++ b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ICUServiceThreadTest.java @@ -1,6 +1,6 @@ /** ******************************************************************************* - * Copyright (C) 2001-2009, International Business Machines Corporation and * + * Copyright (C) 2001-2010, International Business Machines Corporation and * * others. All Rights Reserved. * ******************************************************************************* */ @@ -477,7 +477,7 @@ public class ICUServiceThreadTest extends TestFmwk new UnregisterFactoryThread("", service, 500, this).start(); // yoweee!!! - runThreads(10000); + runThreads(9500); if (PRINTSTATS) System.out.println(service.stats()); } }