Skip to content
Snippets Groups Projects
Commit 56c7facc authored by Robert Loehning's avatar Robert Loehning Committed by Robert Löhning
Browse files

Squish: Testing GLSLEditor in tst_select_all


Change-Id: Ib1d16d7cb7fe108b23c9eca70da6b6de2f9c563a
Reviewed-by: default avatarChristian Stenger <christian.stenger@nokia.com>
parent 23c7665c
No related branches found
No related tags found
No related merge requests found
......@@ -207,6 +207,7 @@ def getEditorForFileSuffix(curFile):
"tcc", "tpp", "t++", "c", "cu", "m", "mm", "hh", "hxx", "h++", "hpp", "hp"]
qmlEditorSuffixes = ["qml", "qmlproject", "js", "qs", "qtt"]
proEditorSuffixes = ["pro", "pri", "prf"]
glslEditorSuffixes= ["frag", "vert", "fsh", "vsh"]
suffix = __getFileSuffix__(curFile)
if suffix in cppEditorSuffixes:
editor = waitForObject("{type='CppEditor::Internal::CPPEditorWidget' unnamed='1' "
......@@ -217,6 +218,9 @@ def getEditorForFileSuffix(curFile):
elif suffix in proEditorSuffixes:
editor = waitForObject("{type='Qt4ProjectManager::Internal::ProFileEditorWidget' unnamed='1' "
"visible='1' window=':Qt Creator_Core::Internal::MainWindow'}")
elif suffix in glslEditorSuffixes:
editor = waitForObject("{type='GLSLEditor::GLSLTextEditorWidget' unnamed='1' "
"visible='1' window=':Qt Creator_Core::Internal::MainWindow'}")
else:
test.log("Trying PlainTextEditor (file suffix: %s)" % suffix)
try:
......
......@@ -11,7 +11,8 @@ def charactersInFile(filename):
def main():
files = [srcPath + "/creator/README", srcPath + "/creator/qtcreator.pri",
srcPath + "/creator/doc/snippets/qml/list-of-transitions.qml"]
srcPath + "/creator/doc/snippets/qml/list-of-transitions.qml",
srcPath + "/creator/share/qtcreator/glsl/glsl_120.frag"]
for currentFile in files:
if not neededFilePresent(currentFile):
return
......
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