mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-09 10:46:02 +02:00
Additional external dependency calculator test
This commit is contained in:
parent
34411d80e6
commit
3b1a507cc6
2 changed files with 15 additions and 0 deletions
Binary file not shown.
|
@ -78,6 +78,7 @@ public class ManagedProject30MakefileTests extends TestCase {
|
||||||
suite.addTest(new ManagedProject30MakefileTests("test30_2"));
|
suite.addTest(new ManagedProject30MakefileTests("test30_2"));
|
||||||
suite.addTest(new ManagedProject30MakefileTests("testTopTC"));
|
suite.addTest(new ManagedProject30MakefileTests("testTopTC"));
|
||||||
suite.addTest(new ManagedProject30MakefileTests("CDTFortranTest1"));
|
suite.addTest(new ManagedProject30MakefileTests("CDTFortranTest1"));
|
||||||
|
suite.addTest(new ManagedProject30MakefileTests("CDTFortranTest2"));
|
||||||
return suite;
|
return suite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -556,4 +557,18 @@ public class ManagedProject30MakefileTests extends TestCase {
|
||||||
IProject[] projects = createProjects("CDTFortranTest1", null, null, true);
|
IProject[] projects = createProjects("CDTFortranTest1", null, null, true);
|
||||||
buildProjects(projects, makefiles);
|
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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue