unit testing - Android Test Monkey - Set Verbosity? -
how can change verbosity level when running test monkey command line?
these 2 commands work:
adb shell monkey -p com.my.package 5000 adb shell monkey -p com.my.package -v 5000
the developer docs say, "each -v on command line increment verbosity level. level 0 (the default) provides little information beyond startup notification, test completion, , final results. level 1 provides more details test runs, such individual events being sent activities. level 2 provides more detailed setup information such activities selected or not selected testing."
however, when try adb shell monkey -p com.my.package -v -v 5000
segmentation fault monkey -p com.my...
.
i tried adb shell monkey -p com.my.package -v 2 5000
, monkey reads 2
count, rather value -v
.
help? :)
it should be: adb shell monkey -p com.my.package -vvv 5000
Comments
Post a Comment