summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Leme <felipeal@google.com>2016-06-10 16:56:33 -0700
committerFelipe Leme <felipeal@google.com>2016-06-10 16:56:33 -0700
commit3f83dbe2e0bb9cabe598ef0812ae358b1c5b415f (patch)
tree6b7a5df899c88d5f3761d3c063d4951bcdab968d
parent6ab3c01d1806e44976c10b34e5f6a5c5531c1da5 (diff)
downloadnative-3f83dbe2e0bb9cabe598ef0812ae358b1c5b415f.tar.gz
Fixed -t order (should be *after* dumpsys :-)
BUG: 29042642 Change-Id: I1b88634b0152f849a57f8e82adc82bdc5e609db7
-rw-r--r--cmds/dumpstate/dumpstate.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmds/dumpstate/dumpstate.cpp b/cmds/dumpstate/dumpstate.cpp
index f1f4c2f49b..cd7c4aa1cb 100644
--- a/cmds/dumpstate/dumpstate.cpp
+++ b/cmds/dumpstate/dumpstate.cpp
@@ -911,19 +911,19 @@ static void dumpstate(const std::string& screenshot_path, const std::string& ver
printf("== Running Application Activities\n");
printf("========================================================\n");
- run_command("APP ACTIVITIES", 30, "-t", "30", "dumpsys", "activity", "all", NULL);
+ run_command("APP ACTIVITIES", 30, "dumpsys", "-t", "30", "activity", "all", NULL);
printf("========================================================\n");
printf("== Running Application Services\n");
printf("========================================================\n");
- run_command("APP SERVICES", 30, "-t", "30", "dumpsys", "activity", "service", "all", NULL);
+ run_command("APP SERVICES", 30, "dumpsys", "-t", "30", "activity", "service", "all", NULL);
printf("========================================================\n");
printf("== Running Application Providers\n");
printf("========================================================\n");
- run_command("APP SERVICES", 30, "-t", "30", "dumpsys", "activity", "provider", "all", NULL);
+ run_command("APP SERVICES", 30, "dumpsys", "-t", "30", "activity", "provider", "all", NULL);
printf("========================================================\n");