1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 19:42:01 +02:00

In-memory reaper. TtlSet needs tests.

This commit is contained in:
Simo Kinnunen 2015-06-01 17:39:59 +09:00
parent 89aedcef06
commit 25544d1a1a
10 changed files with 231 additions and 87 deletions

View file

@ -16,6 +16,7 @@ module.exports = function(options) {
var log = logger.createLogger('device')
log.info('Preparing device')
return syrup.serial()
.dependency(require('./plugins/heartbeat'))
.dependency(require('./plugins/solo'))
.dependency(require('./plugins/screen/stream'))
.dependency(require('./plugins/screen/capture'))
@ -38,7 +39,7 @@ module.exports = function(options) {
.dependency(require('./plugins/ringer'))
.dependency(require('./plugins/wifi'))
.dependency(require('./plugins/sd'))
.define(function(options, solo) {
.define(function(options, heartbeat, solo) {
if (process.send) {
// Only if we have a parent process
process.send('ready')