diff options
author | Joe Malin <jmalin@google.com> | 2010-08-30 15:52:14 -0700 |
---|---|---|
committer | Joe Malin <jmalin@google.com> | 2010-08-31 13:31:20 -0700 |
commit | babe28e01c6e845e41f8a7d23ab0b2a2c93a2e6b (patch) | |
tree | acf55cad9d5266bcfe6a9a953b59dfe3f8401b0a /cmds/pm | |
parent | f827a0cf1d42e3f69050c2888221e901d7f80330 (diff) | |
download | frameworks_base-babe28e01c6e845e41f8a7d23ab0b2a2c93a2e6b.zip frameworks_base-babe28e01c6e845e41f8a7d23ab0b2a2c93a2e6b.tar.gz frameworks_base-babe28e01c6e845e41f8a7d23ab0b2a2c93a2e6b.tar.bz2 |
Doc change: Update pm command usage for test packages
Change-Id: If9c51e0265394538023a913fa271dfb80f14a92e
Diffstat (limited to 'cmds/pm')
-rw-r--r-- | cmds/pm/src/com/android/commands/pm/Pm.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cmds/pm/src/com/android/commands/pm/Pm.java b/cmds/pm/src/com/android/commands/pm/Pm.java index 9b8b0ac..040421a 100644 --- a/cmds/pm/src/com/android/commands/pm/Pm.java +++ b/cmds/pm/src/com/android/commands/pm/Pm.java @@ -233,7 +233,7 @@ public final class Pm { for (int i=0; i<rawList.length; i++) { list.add(rawList[i]); } - + // Sort by name Collections.sort(list, new Comparator<FeatureInfo>() { @@ -909,6 +909,9 @@ public final class Pm { System.err.println("The list instrumentation command prints all instrumentations,"); System.err.println("or only those that target a specified package. Options:"); System.err.println(" -f: see their associated file."); + System.err.println("(Use this command to list all test packages, or use <TARGET-PACKAGE> "); + System.err.println(" to list the test packages for a particular application. The -f "); + System.err.println(" option lists the .apk file for the test package.)"); System.err.println(""); System.err.println("The list features command prints all features of the system."); System.err.println(""); |