mirror of
https://github.com/openstf/stf
synced 2025-10-04 18:29:17 +02:00
Use 'ps -lef' instead of 'ps' to list Pids on Android 8.x
This commit is contained in:
parent
2dac3d1bbd
commit
fa50c56bb9
1 changed files with 42 additions and 22 deletions
|
@ -5,6 +5,8 @@ var Promise = require('bluebird')
|
|||
|
||||
var devutil = module.exports = Object.create(null)
|
||||
|
||||
var commands = Object.create(null)
|
||||
|
||||
function closedError(err) {
|
||||
return err.message.indexOf('closed') !== -1
|
||||
}
|
||||
|
@ -39,13 +41,30 @@ devutil.listPidsByComm = function(adb, serial, comm, bin) {
|
|||
shell: true
|
||||
}
|
||||
|
||||
return adb.shell(serial, ['ps'])
|
||||
.then(function(out) {
|
||||
return new Promise(function(resolve) {
|
||||
if ('ps' in commands) {
|
||||
resolve(commands)
|
||||
} else {
|
||||
adb.getProperties(serial)
|
||||
.then(function (properties) {
|
||||
version = properties['ro.build.version.release']
|
||||
if (version.match(/^8\./) != null) {
|
||||
commands['ps'] = 'ps -lef'
|
||||
} else {
|
||||
commands['ps'] = 'ps'
|
||||
}
|
||||
resolve(commands)
|
||||
})
|
||||
}
|
||||
})
|
||||
.then(function (commands) {
|
||||
return adb.shell(serial, [commands['ps']])
|
||||
.then(function (out) {
|
||||
return new Promise(function (resolve) {
|
||||
var header = true
|
||||
var pids = []
|
||||
out.pipe(split())
|
||||
.on('data', function(chunk) {
|
||||
.on('data', function (chunk) {
|
||||
if (header) {
|
||||
header = false
|
||||
}
|
||||
|
@ -56,11 +75,12 @@ devutil.listPidsByComm = function(adb, serial, comm, bin) {
|
|||
}
|
||||
}
|
||||
})
|
||||
.on('end', function() {
|
||||
.on('end', function () {
|
||||
resolve(pids)
|
||||
})
|
||||
})
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
devutil.waitForProcsToDie = function(adb, serial, comm, bin) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue