summaryrefslogtreecommitdiff
path: root/tests/system/suite_CSUP/tst_CSUP05/test.py
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2017-06-14 16:11:19 +0200
committerRobert Loehning <robert.loehning@qt.io>2017-07-31 14:04:00 +0000
commit11abd8edf71aa3a62d93b95977f722d761d1df32 (patch)
tree5c75e398b8bcc1dfb4aa54407057a285f2c91fe6 /tests/system/suite_CSUP/tst_CSUP05/test.py
parent4af7792ad3bf03c756749525e93d2cec01fe11e6 (diff)
downloadqt-creator-11abd8edf71aa3a62d93b95977f722d761d1df32.tar.gz
Squish: Replace Qt4 SDK by self-built Qt 4.8.7
Change-Id: If990367afb01aae94755930c02c81ae82b23bb8f Reviewed-by: Robert Loehning <robert.loehning@qt.io> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'tests/system/suite_CSUP/tst_CSUP05/test.py')
-rw-r--r--tests/system/suite_CSUP/tst_CSUP05/test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/system/suite_CSUP/tst_CSUP05/test.py b/tests/system/suite_CSUP/tst_CSUP05/test.py
index 54f8e4b783..3b9409c56c 100644
--- a/tests/system/suite_CSUP/tst_CSUP05/test.py
+++ b/tests/system/suite_CSUP/tst_CSUP05/test.py
@@ -28,8 +28,8 @@ source("../../shared/qtcreator.py")
# entry of test
def main():
# prepare example project
- sourceExample = os.path.abspath(sdkPath + "/Examples/4.7/declarative/animation/basics/property-animation")
- proFile = "propertyanimation.pro"
+ sourceExample = os.path.abspath(qt4examplePath + "/declarative/animation/basics/property-animation")
+ proFile = "property-animation.pro"
if not neededFilePresent(os.path.join(sourceExample, proFile)):
return
# copy example project to temp directory
@@ -44,7 +44,7 @@ def main():
progressBarWait(30000)
checkCodeModelSettings(useClang)
# open .cpp file in editor
- if not openDocument("propertyanimation.Sources.main\\.cpp"):
+ if not openDocument("property-animation.Sources.main\\.cpp"):
test.fatal("Could not open main.cpp")
invokeMenuItem("File", "Exit")
return