Skip to content

Commit

Permalink
use correct path separators when invoking testcases on windows
Browse files Browse the repository at this point in the history
Change-Id: Iad541f0d62ffdb2751da6225b9d40229d7d9a03f
Reviewed-by: Joerg Bornemann <[email protected]>
Reviewed-by: Edward Welbourne <[email protected]>
  • Loading branch information
ossilator committed Jan 18, 2018
1 parent bed6292 commit 3149d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mkspecs/features/testcase.prf
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ unix {
$${type}.commands += $${TEST_TARGET_DIR}/$(QMAKE_TARGET)
} else {
# Windows
!isEmpty(TEST_TARGET_DIR): TEST_TARGET_DIR = $${TEST_TARGET_DIR}$${QMAKE_DIR_SEP}
!isEmpty(TEST_TARGET_DIR): TEST_TARGET_DIR = $$shell_path($$TEST_TARGET_DIR)$${QMAKE_DIR_SEP}
$${type}.commands += $${TEST_TARGET_DIR}$(TARGET)
}

Expand Down

0 comments on commit 3149d0f

Please sign in to comment.