From d9be58fd2c1f1914347c2ef70572383d0a5daa2e Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 13 Mar 2013 08:23:41 +1100 Subject: [PATCH] autotest: add 10 mins to timeout this copes with build_binaries.sh --- Tools/autotest/autotest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/autotest/autotest.py b/Tools/autotest/autotest.py index bf5271da69..d46bf64779 100755 --- a/Tools/autotest/autotest.py +++ b/Tools/autotest/autotest.py @@ -142,7 +142,7 @@ parser.add_option("--skip", type='string', default='', help='list of steps to sk parser.add_option("--list", action='store_true', default=False, help='list the available steps') parser.add_option("--viewerip", default=None, help='IP address to send MAVLink and fg packets to') parser.add_option("--experimental", default=False, action='store_true', help='enable experimental tests') -parser.add_option("--timeout", default=2400, type='int', help='maximum runtime in seconds') +parser.add_option("--timeout", default=3000, type='int', help='maximum runtime in seconds') opts, args = parser.parse_args()