1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
This commit is contained in:
Mikhail Sennikovsky 2007-06-21 20:35:19 +00:00
parent e48b0affc2
commit ee2a038235

View file

@ -81,7 +81,11 @@ public class ManagedProject30MakefileTests extends TestCase {
suite.addTest(new ManagedProject30MakefileTests("TestATO")); suite.addTest(new ManagedProject30MakefileTests("TestATO"));
suite.addTest(new ManagedProject30MakefileTests("testMacroSupportInBuildDefinitions")); suite.addTest(new ManagedProject30MakefileTests("testMacroSupportInBuildDefinitions"));
suite.addTest(new ManagedProject30MakefileTests("testSpaces")); suite.addTest(new ManagedProject30MakefileTests("testSpaces"));
suite.addTest(new ManagedProject30MakefileTests("testInputTypeOption")); if(File.pathSeparatorChar == '\\'){
//the test is valid for windows because it is using windows-specific paths with devices and assumes they are absolute
//FIXME: make the test run on linux
suite.addTest(new ManagedProject30MakefileTests("testInputTypeOption"));
}
return suite; return suite;
} }