aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/shared/build_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/shared/build_utils.py')
-rw-r--r--tests/system/shared/build_utils.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/system/shared/build_utils.py b/tests/system/shared/build_utils.py
index 6a2904286a..c26634f61d 100644
--- a/tests/system/shared/build_utils.py
+++ b/tests/system/shared/build_utils.py
@@ -40,12 +40,6 @@ def getBuildIssues(ignoreCodeModel=True):
# lines within the Issues output
# param expectedToFail can be used to tell this function if the build was expected to fail or not
def checkLastBuild(expectedToFail=False):
- try:
- # can't use waitForObject() 'cause visible is always 0
- findObject("{type='ProjectExplorer::Internal::BuildProgress' unnamed='1' }")
- except LookupError:
- test.log("checkLastBuild called without a build")
- return
buildIssues = getBuildIssues()
types = [i[1] for i in buildIssues]
errors = types.count("1")