1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 14:12:10 +02:00

compiler warnings

This commit is contained in:
Andrew Gvozdev 2009-08-30 00:21:00 +00:00
parent 1f826ef9a9
commit ad8ac8d4f8
5 changed files with 10 additions and 0 deletions

View file

@ -34,6 +34,7 @@ public class MakeTestsPlugin extends Plugin {
/**
* This method is called upon plug-in activation
*/
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
}
@ -41,6 +42,7 @@ public class MakeTestsPlugin extends Plugin {
/**
* This method is called when the plug-in is stopped
*/
@Override
public void stop(BundleContext context) throws Exception {
super.stop(context);
plugin = null;

View file

@ -39,11 +39,13 @@ public abstract class BaseBOPConsoleParserTests extends BaseTestCase {
super(name);
}
@Override
protected void setUp() throws Exception {
super.setUp();
fCollector= new TestScannerInfoCollector();
}
@Override
protected void tearDown() throws Exception {
super.tearDown();
}

View file

@ -34,12 +34,14 @@ public class GCCScannerInfoConsoleParserTests extends BaseBOPConsoleParserTests
super(name);
}
@Override
protected void setUp() throws Exception {
super.setUp();
fOutputParser= new GCCScannerInfoConsoleParser();
fOutputParser.startup(null, null, fCollector, null);
}
@Override
protected void tearDown() throws Exception {
super.tearDown();
fOutputParser.shutdown();

View file

@ -46,6 +46,7 @@ public class ScannerConfigDiscoveryTests extends BaseTestCase {
super(name);
}
@Override
protected void setUp() throws Exception {
fMonitor = new NullProgressMonitor();
@ -56,6 +57,7 @@ public class ScannerConfigDiscoveryTests extends BaseTestCase {
}
}
@Override
protected void tearDown() throws Exception {
StandardBuildTestHelper.removeProject("SCDC");
}

View file

@ -31,6 +31,7 @@ public class ScannerConfigProfileTests extends BaseTestCase {
private IProject fCProject = null;
private IFile fCFile = null;
@Override
protected void setUp() throws Exception {
fCProject = StandardBuildTestHelper.createProject("SCD", (IPath)null, MakeCorePlugin.MAKE_PROJECT_ID);
fCFile = fCProject.getProject().getFile("main.c");
@ -39,6 +40,7 @@ public class ScannerConfigProfileTests extends BaseTestCase {
}
}
@Override
protected void tearDown() throws Exception {
StandardBuildTestHelper.removeProject("SCDC");
}