mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 14:15:23 +02:00
Patch for Bogdan Gheorghe.
Changed the order of tests in AutomatedIntegrationSuite. The indexer tests must be run AFTER any indexer client tests...
This commit is contained in:
parent
891454830b
commit
905d5c624d
3 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-08-12 Bogdan Gheorghe
|
||||
Changed the order of tests in AutomatedIntegrationSuite to have
|
||||
the indexing tests run last (the last indexing test shuts down
|
||||
the indexing thread).
|
||||
|
||||
2003-08-12 John Camelon
|
||||
Added CompleteParseASTTest::testForewardDeclarationWithUsage().
|
||||
|
||||
|
|
|
@ -88,7 +88,7 @@ public class IndexManagerTests extends TestCase {
|
|||
}
|
||||
|
||||
public static Test suite() {
|
||||
TestSuite suite = new TestSuite();
|
||||
TestSuite suite = new TestSuite(IndexManagerTests.class.getName());
|
||||
|
||||
suite.addTest(new IndexManagerTests("testAddNewFileToIndex"));
|
||||
suite.addTest(new IndexManagerTests("testRemoveProjectFromIndex"));
|
||||
|
|
|
@ -90,10 +90,11 @@ public class AutomatedIntegrationSuite extends TestSuite
|
|||
suite.addTestSuite(ClassDeclarationPatternTests.class );
|
||||
suite.addTestSuite(FunctionMethodPatternTests.class );
|
||||
suite.addTestSuite(OtherPatternTests.class );
|
||||
suite.addTest(IndexManagerTests.suite());
|
||||
suite.addTestSuite( ParseTestOnSearchFiles.class);
|
||||
suite.addTestSuite( CompletionProposalsTest.class);
|
||||
|
||||
//Indexer Tests need to be run after any indexer client tests
|
||||
//as the last test shuts down the indexing thread
|
||||
suite.addTest(IndexManagerTests.suite());
|
||||
// Last test to trigger report generation
|
||||
suite.addTest(suite.new GenerateReport("startFailedTests"));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue