Skip to content

Commit 338bfec

Browse files
Rohan McGovernJoão Abecasis
Rohan McGovern
authored and
João Abecasis
committed
Fixed unescaped backslashes in testcase.prf
(cherry picked from commit c5beba2)
1 parent e0bb13c commit 338bfec

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)