ICU-11363 Thread#join() to the main test thread after start.

X-SVN-Rev: 36802
This commit is contained in:
Yoshito Umaoka 2014-12-02 23:08:38 +00:00
parent 63758dca88
commit a2581f458c

View File

@ -1479,5 +1479,13 @@ public class DateFormatRegressionTest extends com.ibm.icu.dev.test.TestFmwk {
for (Thread t : threads) {
t.start();
}
for (Thread t : threads) {
try {
t.join();
} catch (InterruptedException e) {
errln(e.toString());
}
}
}
}