diff mbox

[Branch,~linaro-validation/lava-dispatcher/trunk] Rev 405: regression with lava-test for fastmodel

Message ID 20121017142313.5825.85671.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

Andy Doan Oct. 17, 2012, 2:23 p.m. UTC
------------------------------------------------------------
revno: 405
committer: Andy Doan <andy.doan@linaro.org>
branch nick: trunk
timestamp: Tue 2012-10-16 22:45:38 -0500
message:
  regression with lava-test for fastmodel
  
  I'm not sure how this ever worked, but the recent juggling around
  of prompts has indicated an issue with the default timeout set
  for fastmodels. Any command that passes -1 as a timeout uses the
  default which was 90, and way too small to do something like run
  the bigLITTLE suite. This gets it to a sane value used by all
  other device types.
modified:
  lava_dispatcher/device/fastmodel.py


--
lp:lava-dispatcher
https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk

You are subscribed to branch lp:lava-dispatcher.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'lava_dispatcher/device/fastmodel.py'
--- lava_dispatcher/device/fastmodel.py	2012-10-17 03:45:38 +0000
+++ lava_dispatcher/device/fastmodel.py	2012-10-17 03:45:38 +0000
@@ -225,7 +225,7 @@ 
         self.proc = logging_spawn(
             'telnet localhost %s' % self._serial_port,
             logfile=self._create_rtsm_ostream(self.sio),
-            timeout=90)
+            timeout=1200)
         return self.proc
 
     def get_test_data_attachments(self):