1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fix for Sean.

This commit is contained in:
Doug Schaefer 2003-09-25 19:14:50 +00:00
parent 4424209abc
commit f13c66b5ca

View file

@ -155,7 +155,8 @@ public class ManagedBuildTests extends TestCase {
public void testScannerInfoInterface(){ public void testScannerInfoInterface(){
// These are the expected path settings // These are the expected path settings
final String[] expectedPaths = new String[4]; final String[] expectedPaths = new String[4];
expectedPaths[0] = (new Path("/usr/gnu/include")).toOSString(); // This first path is a built-in, so it will not be manipulated by build manager
expectedPaths[0] = "/usr/gnu/include";
expectedPaths[1] = (new Path("/usr/include")).toOSString(); expectedPaths[1] = (new Path("/usr/include")).toOSString();
expectedPaths[2] = (new Path("/opt/gnome/include")).toOSString(); expectedPaths[2] = (new Path("/opt/gnome/include")).toOSString();
expectedPaths[3] = (new Path("C:\\home\\tester/include")).toOSString(); expectedPaths[3] = (new Path("C:\\home\\tester/include")).toOSString();