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

Bug 426834 - Double backslashes are no longer removed.

Change-Id: I91a8f7a6f10cab9d24149cc4fd29e867e0040b10
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
Marc Khouzam 2014-04-04 08:00:21 -04:00
parent 535f975b47
commit d844a16e83

View file

@ -29,16 +29,6 @@ import org.junit.Test;
*/
public class TestMIBreakInsertCommand {
@Test
public void pathShouldNotContainDoubleBackSlashes() {
MIBreakInsert target = new MIBreakInsert(new TestContext(), false,
false, null, 1, "c:\\test\\this\\path:14", 4, false);
assertEquals("Wrong syntax for command",
"-break-insert -i 1 -p 4 c:\\test\\this\\path:14\n", target
.constructCommand());
}
@Test
public void pathWithSlashesShouldNotBeSubstituted() {
MIBreakInsert target = new MIBreakInsert(new TestContext(), false,