android_external_toybox/tests/ps.test

12 lines
251 B
Plaintext
Raw Permalink Normal View History

2019-10-16 10:10:53 -07:00
#!/bin/bash
[ -f testing.sh ] && . testing.sh
#testing "name" "command" "result" "infile" "stdin"
ln -s "$(which sleep)" xiphoid
(./xiphoid 5 & echo $! > pid.txt)
ID=$(cat pid.txt)
NOSPACE=1 testing "" "ps -o pid $ID" "PID\n$ID\n" "" ""
kill "$ID"