How can I change the verbosity level when running Test Monkey from the command line?

These two 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 the command line will increment the verbosity level. Level 0 (the default) provides little information beyond startup notification, test completion, and final results. Level 1 provides more details about the test as it runs, such as individual events being sent to your activities. Level 2 provides more detailed setup information such as activities selected or not selected for testing."

However, when I try: adb shell monkey -p com.my.package -v -v 5000

I get a "segmentation fault monkey -p com.my..." when I try the following:

I tried adb shell monkey -p com.my.package -v 2 5000, but monkey reads "2" as the count, rather than the value for -v.

Help? :)

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

It should be: adb shell monkey -p com.my.package -vvv 5000

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.