1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 02:36:01 +02:00

Additional external dependency calculator test

This commit is contained in:
Leo Treggiari 2005-09-07 13:37:38 +00:00
parent 34411d80e6
commit 3b1a507cc6
2 changed files with 15 additions and 0 deletions

View file

@ -78,6 +78,7 @@ public class ManagedProject30MakefileTests extends TestCase {
suite.addTest(new ManagedProject30MakefileTests("test30_2"));
suite.addTest(new ManagedProject30MakefileTests("testTopTC"));
suite.addTest(new ManagedProject30MakefileTests("CDTFortranTest1"));
suite.addTest(new ManagedProject30MakefileTests("CDTFortranTest2"));
return suite;
}
@ -556,4 +557,18 @@ public class ManagedProject30MakefileTests extends TestCase {
IProject[] projects = createProjects("CDTFortranTest1", null, null, true);
buildProjects(projects, makefiles);
}
/* (non-Javadoc)
* tests external dependency calculation using Fortran modules
*/
public void CDTFortranTest2(){
IPath[] makefiles = {
Path.fromOSString("makefile"),
Path.fromOSString("objects.mk"),
Path.fromOSString("sources.mk"),
Path.fromOSString("module/subdir.mk"),
Path.fromOSString("sources/subdir.mk")};
IProject[] projects = createProjects("CDTFortranTest2", null, null, true);
buildProjects(projects, makefiles);
}
}