Skip to content
Snippets Groups Projects
Commit 79b0ff81 authored by Robert Loehning's avatar Robert Loehning Committed by Christian Stenger
Browse files

Squish: Updated checking for created files


Done-with: Christian Stenger

Change-Id: I533ff2f41a5d6554d0f6a880d1ede093de2f9d6c
Reviewed-by: default avatarChristian Stenger <christian.stenger@nokia.com>
parent 6f45ec97
No related branches found
No related tags found
No related merge requests found
...@@ -169,7 +169,13 @@ def createProject_Qt_GUI(path, projectName, qtVersion = None, checks = True): ...@@ -169,7 +169,13 @@ def createProject_Qt_GUI(path, projectName, qtVersion = None, checks = True):
if platform.system() in ('Windows', 'Microsoft'): if platform.system() in ('Windows', 'Microsoft'):
path = os.path.abspath(path) path = os.path.abspath(path)
path = os.path.join(path, projectName) path = os.path.join(path, projectName)
expectedFiles = [path, cpp_file, h_file, ui_file, pro_file] expectedFiles = [path]
tmpList = ["main.cpp", cpp_file, h_file, ui_file, pro_file]
if platform.system() in ('Windows', 'Microsoft'):
tmpList.sort(key=str.lower)
else:
tmpList.sort()
expectedFiles.extend(tmpList)
__createProjectHandleLastPage__(expectedFiles) __createProjectHandleLastPage__(expectedFiles)
waitForSignal("{type='CppTools::Internal::CppModelManager' unnamed='1'}", "sourceFilesRefreshed(QStringList)", 20000) waitForSignal("{type='CppTools::Internal::CppModelManager' unnamed='1'}", "sourceFilesRefreshed(QStringList)", 20000)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment