aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2018-04-17 08:00:11 +0200
committerRobert Loehning <robert.loehning@qt.io>2018-04-17 11:52:48 +0000
commitd21c508b0abd67321c4c01d4a5ac23c10891272b (patch)
tree9696f093c1c2617c87820aca0e2b3888127db250 /tests
parentd75142732658c92303ae56f674276be1638672f0 (diff)
Squish: Remove dead code
Change-Id: Ic24c9db0b923409026d92b87b246694dde8968db Reviewed-by: Robert Loehning <robert.loehning@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/system/shared/classes.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/system/shared/classes.py b/tests/system/shared/classes.py
index d06398a159..c18173eea6 100644
--- a/tests/system/shared/classes.py
+++ b/tests/system/shared/classes.py
@@ -193,18 +193,6 @@ class Qt5Path:
@staticmethod
def __createPlatformQtPath__(qt5Minor):
- # special handling for Qt5.2
- if qt5Minor == 2:
- if platform.system() in ('Microsoft', 'Windows'):
- return "C:/Qt/Qt5.2.1/5.2.1/msvc2010"
- elif platform.system() == 'Linux':
- if __is64BitOS__():
- return os.path.expanduser("~/Qt5.2.1/5.2.1/gcc_64")
- else:
- return os.path.expanduser("~/Qt5.2.1/5.2.1/gcc")
- else:
- return os.path.expanduser("~/Qt5.2.1/5.2.1/clang_64")
- # Qt5.3+
if platform.system() in ('Microsoft', 'Windows'):
return "C:/Qt/Qt5.%d.1" % qt5Minor
else: