diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/system/shared/qtcreator.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/system/shared/qtcreator.py b/tests/system/shared/qtcreator.py index 63f3a17ae2..95303c20a8 100644 --- a/tests/system/shared/qtcreator.py +++ b/tests/system/shared/qtcreator.py @@ -50,9 +50,9 @@ def __removeTmpSettingsDir__(): deleteDirIfExists(os.path.dirname(tmpSettingsDir)) if platform.system() in ('Windows', 'Microsoft'): - sdkPath = "C:/QtSDK" + sdkPath = "C:\\QtSDK" cwd = os.getcwd() # current dir is directory holding qtcreator.py - cwd+="/../../settings/windows" + cwd+="\\..\\..\\settings\\windows" else: sdkPath = os.path.expanduser("~/QtSDK") cwd = os.getcwd() # current dir is directory holding qtcreator.py |