Files
android_development/cmds/monkey/monkey.sh
Cole Faust 7bc42679aa Fix module-file name collisions
Bazel doesn't allow a module and file with the same name.

Bug: 198619163
Test: Presubmits
Change-Id: I8f143ad512f0d6372e3c75d363ee73f339849a3e
2022-09-01 15:13:34 -07:00

12 lines
268 B
Bash
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 "$@"