summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Kampas <martin.kampas+gnomebugs@ubedi.net>2014-02-24 16:07:33 +0000
committerMartyn Russell <martyn@lanedo.com>2014-02-24 16:31:32 +0000
commit02ee5a86bdfa97524212a25f78cab83a65c21f50 (patch)
tree3ed3128c08fcc9c714cd690be031dd11c9b5d36c
parentf9b846e6836ead799532f7309b43076bc21ccb15 (diff)
downloadtracker-02ee5a86bdfa97524212a25f78cab83a65c21f50.tar.gz
functional-tests: Increase default timeout 90s->180s, 90s isn't long enough sometimes
Some test cases need more than the default 90 seconds to complete. As the tests.xml is autogenerated, it is not possible to increase the timeout selectively without bigger changes to the create-tests-xml.py script. Thus increasing globally.
-rwxr-xr-xtests/functional-tests/create-tests-xml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional-tests/create-tests-xml.py b/tests/functional-tests/create-tests-xml.py
index d29785496..ddc5da6d5 100755
--- a/tests/functional-tests/create-tests-xml.py
+++ b/tests/functional-tests/create-tests-xml.py
@@ -34,7 +34,7 @@ HEADER = """
<suite name="tracker">
<description>Functional tests for the brilliant tracker</description> """
-TEST_CASE_TMPL = """ <case name="%s">
+TEST_CASE_TMPL = """ <case name="%s" timeout="180">
<description>%s</description>
<step>%s</step>
</case>"""