Files
android_development/cmds/monkey/monkey
Joe Onorato a56875b997 Add --match-description to Monkey
Which lets it ignore monkey errors that don't match the pattern you supply

Change-Id: I69e8b02e7172223e7313d0fbd87af395d2d4f0a2
2016-12-07 17:03:14 -08:00

12 lines
268 B
Plaintext
Executable File

# Script to start "monkey" on the device, which has a very rudimentary
# shell.
#
base=/system
export CLASSPATH=$base/framework/monkey.jar
trap "" HUP
for a in "$@"; do
echo " bash arg:" $a
done
exec app_process $base/bin com.android.commands.monkey.Monkey "$@"