1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Failing test case for bug 253080.

This commit is contained in:
Sergey Prigogin 2008-11-08 19:31:47 +00:00
parent a28d15d9cc
commit d9a42eb002

View file

@ -109,7 +109,7 @@ public class IndexBugsTests extends BaseTestCase {
StringBuffer[] help= TestSourceReader.getContentsForTest(
CTestPlugin.getDefault().getBundle(), "parser", getClass(), getName(), blocks);
String[] result= new String[help.length];
int i=0;
int i= 0;
for (StringBuffer buf : help) {
result[i++]= buf.toString();
}
@ -125,7 +125,7 @@ public class IndexBugsTests extends BaseTestCase {
long waitms= 1;
while (waitms < 2000 && indexManager.isIndexerSetupPostponed(fCProject)) {
Thread.sleep(waitms);
waitms*=2;
waitms *= 2;
}
assertTrue(indexManager.joinIndexer(INDEX_WAIT_TIME, NPM));
}