Skip to content

Commit c5beba2

Browse files
author
Rohan McGovern
committed
Fixed unescaped backslashes in testcase.prf
1 parent 02fd8c1 commit c5beba2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mkspecs/features/testcase.prf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ win32:debug_and_release {
1818
# subdirectory. However, since make's working directory is already outside of the
1919
# debug/release subdirectory, this first ../ should be ignored when deciding if
2020
# we have to change directory before running the test.
21-
MUNGED_TARGET=$$replace(MUNGED_TARGET,^\.\./,)
21+
MUNGED_TARGET=$$replace(MUNGED_TARGET,^\\.\\./,)
2222
}
23-
!isEmpty(MUNGED_DESTDIR):!contains(MUNGED_DESTDIR,^\./?):check.commands = cd $(DESTDIR) &&
23+
!isEmpty(MUNGED_DESTDIR):!contains(MUNGED_DESTDIR,^\\./?):check.commands = cd $(DESTDIR) &&
2424
contains(MUNGED_TARGET,.*/.*):check.commands = cd $(DESTDIR) &&
2525

2626
# Allow for a custom test runner script

0 commit comments

Comments
 (0)