1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Update tests because of dependency calculation changes and Echo changes

This commit is contained in:
Leo Treggiari 2006-02-23 18:04:57 +00:00
parent c7f73a4051
commit 70f115ea4d
35 changed files with 754 additions and 748 deletions

View file

@ -279,8 +279,12 @@ public class ManagedProject30MakefileTests extends TestCase {
Path.fromOSString("objects.mk"),
Path.fromOSString("sources.mk"),
Path.fromOSString("subdir.mk"),
Path.fromOSString("main.d"),
Path.fromOSString("source1/subdir.mk"),
Path.fromOSString("source1/Class1.d"),
Path.fromOSString("source2/subdir.mk"),
Path.fromOSString("source2/Class2.d"),
Path.fromOSString("source2/source21/Class21.d"),
Path.fromOSString("source2/source21/subdir.mk")};
IProject[] projects = createProjects("multiResConfig", null, null, true);
buildProjects(projects, makefiles);
@ -357,7 +361,9 @@ public class ManagedProject30MakefileTests extends TestCase {
Path.fromOSString("objects.mk"),
Path.fromOSString("sources.mk"),
Path.fromOSString("subdir.mk"),
Path.fromOSString("Functions/subdir.mk")};
Path.fromOSString("main.d"),
Path.fromOSString("Functions/subdir.mk"),
Path.fromOSString("Functions/Func1.d")};
IProject[] projects = createProjects("copyandDeploy", null, null, true);
buildProjects(projects, makefiles);
}