summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTushar Khandelwal <tushar.khandelwal@arm.com>2020-01-31 22:13:50 +0000
committerTushar Khandelwal <tushar.khandelwal@arm.com>2020-01-31 22:17:40 +0000
commit67163ade0d5bc961ba5ec2e9e62c45ac576d8b93 (patch)
tree468e4dfb3037cba6b68f7143792e567cf650d87c
parentb6bbf12cc2d06a6dbc1332672d8f6528b80bf7e7 (diff)
reducing fvp simulation timeout valueCORSTONE-700-2020.02.10CA5-DESIGNSTART-2020.03.06iota
Signed-off-by: Tushar Khandelwal <tushar.khandelwal@arm.com>
-rw-r--r--scripts/test/testrunner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/test/testrunner.py b/scripts/test/testrunner.py
index ed1702a..a631181 100644
--- a/scripts/test/testrunner.py
+++ b/scripts/test/testrunner.py
@@ -57,7 +57,7 @@ class TestRunner:
" provided by the user (default: %(default)s)")
self.parser.add_argument("--timeout", dest='timeout', type=int,
- help="FVP Execution timeout in seconds (default: %(default)s)", default=500)
+ help="FVP Execution timeout in seconds (default: %(default)s)", default=60)
self.parser.add_argument("--fvp", type=str,
help="Absolute path to the FVP .so file")
@@ -195,4 +195,4 @@ class TestRunner:
testDescriptions = {}
for _, test in self.tests.iteritems():
testDescriptions[test['name']] = test['description']
- return json.dumps(testDescriptions, indent=4) \ No newline at end of file
+ return json.dumps(testDescriptions, indent=4)