mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-14 04:25:21 +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:
parent
a3f9960af7
commit
6b3707cfcd
1 changed files with 3 additions and 0 deletions
|
@ -1053,6 +1053,9 @@ public class ManagedBuildCoreTests extends TestCase {
|
||||||
assertEquals(true, options[3].getBooleanValue());
|
assertEquals(true, options[3].getBooleanValue());
|
||||||
tool = tools[0];
|
tool = tools[0];
|
||||||
assertEquals("-Ld -Le -Lf -b overridden -stralsooverridden -e2", tool.getToolFlags());
|
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()));
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Reference in a new issue