aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@nokia.com>2012-06-18 19:52:38 +0200
committerChristian Stenger <christian.stenger@nokia.com>2012-06-20 12:41:03 +0200
commit79ca1f3d7caed96dea172fc8abfd368eb03c5c19 (patch)
treeabe1ec8382b1986aa7ca839bb3965cc6c79e0e1a
parentf22449b94a4c7e82cc96a40b80cd1ea9aad0e5e7 (diff)
Squish: Fixed missing suffixes in getEditorForFileSuffix
Change-Id: Iabda661a70a7656003b47aaf91de28c213d076dc Reviewed-by: Christian Stenger <christian.stenger@nokia.com>
-rw-r--r--tests/system/shared/editor_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/shared/editor_utils.py b/tests/system/shared/editor_utils.py
index c50f0da6cd..2315b3c911 100644
--- a/tests/system/shared/editor_utils.py
+++ b/tests/system/shared/editor_utils.py
@@ -207,7 +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"]
+ glslEditorSuffixes= ["frag", "vert", "fsh", "vsh", "glsl", "shader", "gsh"]
suffix = __getFileSuffix__(curFile)
if suffix in cppEditorSuffixes:
editor = waitForObject("{type='CppEditor::Internal::CPPEditorWidget' unnamed='1' "