mirror of https://github.com/apache/lucene.git
LUCENE-2652: QuickFix for Clover OOM
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@998507 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fb9e5a11fc
commit
93f8a01df7
|
@ -863,21 +863,21 @@ public abstract class LuceneTestCase extends Assert {
|
|||
public LocalizedTestCaseRunner(Class<?> clazz) throws InitializationError {
|
||||
super(clazz);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void runChild(FrameworkMethod arg0, RunNotifier arg1) {
|
||||
arg1.addListener(listener);
|
||||
locale = defaultLocale;
|
||||
super.runChild(arg0, arg1);
|
||||
|
||||
for (Locale other : Locale.getAvailableLocales()) {
|
||||
locale = other;
|
||||
Locale.setDefault(locale);
|
||||
super.runChild(arg0, arg1);
|
||||
}
|
||||
|
||||
Locale.setDefault(defaultLocale);
|
||||
}
|
||||
// FIXME see LUCENE-2652
|
||||
// @Override
|
||||
// protected void runChild(FrameworkMethod arg0, RunNotifier arg1) {
|
||||
// arg1.addListener(listener);
|
||||
// locale = defaultLocale;
|
||||
// super.runChild(arg0, arg1);
|
||||
//
|
||||
// for (Locale other : Locale.getAvailableLocales()) {
|
||||
// locale = other;
|
||||
// Locale.setDefault(locale);
|
||||
// super.runChild(arg0, arg1);
|
||||
// }
|
||||
//
|
||||
// Locale.setDefault(defaultLocale);
|
||||
// }
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue