1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-13 20:15:22 +02:00

Fix for bugzilla 69112 -- The problem was that the managed build manager was returning NULL instead of a default makefile generator when a target was missing one in its definition

This commit is contained in:
Sean Evoy 2004-08-04 20:59:39 +00:00
parent a3f9960af7
commit 6b3707cfcd

View file

@ -1053,6 +1053,9 @@ public class ManagedBuildCoreTests extends TestCase {
assertEquals(true, options[3].getBooleanValue());
tool = tools[0];
assertEquals("-Ld -Le -Lf -b overridden -stralsooverridden -e2", tool.getToolFlags());
// Make sure that the build manager returns the default makefile generator (not null)
assertNotNull(ManagedBuildManager.getMakefileGenerator(target.getId()));
}
/*