summaryrefslogtreecommitdiff
path: root/tests/system/suite_debugger/tst_build_new_project/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/suite_debugger/tst_build_new_project/test.py')
-rw-r--r--tests/system/suite_debugger/tst_build_new_project/test.py11
1 files changed, 1 insertions, 10 deletions
diff --git a/tests/system/suite_debugger/tst_build_new_project/test.py b/tests/system/suite_debugger/tst_build_new_project/test.py
index cd33ccfbbf..4474bbdc32 100644
--- a/tests/system/suite_debugger/tst_build_new_project/test.py
+++ b/tests/system/suite_debugger/tst_build_new_project/test.py
@@ -1,11 +1,10 @@
source("../../shared/qtcreator.py")
-projectsPath = tempDir()
project = "SquishProject"
def main():
startApplication("qtcreator" + SettingsPath)
- createProject_Qt_Console(projectsPath, project)
+ createProject_Qt_Console(tempDir(), project)
availableConfigs = iterateBuildConfigs(1, 0)
if not availableConfigs:
test.fatal("Haven't found a suitable Qt version - leaving without building.")
@@ -14,11 +13,3 @@ def main():
test.log("Testing build configuration: " + config)
runAndCloseApp()
invokeMenuItem("File", "Exit")
- waitForCleanShutdown()
-
-def init():
- cleanup()
-
-def cleanup():
- deleteDirIfExists(projectsPath + os.sep + project)
- deleteDirIfExists(shadowBuildDir(projectsPath, project, defaultQtVersion, 1))