mirror of
https://github.com/openstf/stf
synced 2025-10-04 18:29:17 +02:00
It seems that it's simply impossible to run too many things in parallel over ADB on a single device. Really weird stuff happening, like completely unrelated shell calls using files created by other shell calls. Switch back to serial implementation.
This commit is contained in:
parent
590c96ea21
commit
cc42b7c51f
22 changed files with 23 additions and 23 deletions
|
@ -6,13 +6,13 @@ module.exports = function(options) {
|
|||
// Show serial number in logs
|
||||
logger.setGlobalIdentifier(options.serial)
|
||||
|
||||
return syrup()
|
||||
return syrup.serial()
|
||||
// We want to send logs before anything else start happening
|
||||
.dependency(require('./device/plugins/logsender'))
|
||||
.define(function(options) {
|
||||
var log = logger.createLogger('device')
|
||||
log.info('Preparing device')
|
||||
return syrup()
|
||||
return syrup.serial()
|
||||
.dependency(require('./device/plugins/solo'))
|
||||
.dependency(require('./device/plugins/heartbeat'))
|
||||
.dependency(require('./device/plugins/display'))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue