diff options
| author | 2019-01-31 17:08:59 -0800 | |
|---|---|---|
| committer | 2019-02-01 10:30:26 -0800 | |
| commit | 83ec63f331d6121bbb79010f157259a66b901b06 (patch) | |
| tree | aa7413e6096360636752913f10455be171c69b4a | |
| parent | fdfffe152ad31ede20e206b797bcea17c4d3093c (diff) | |
Add "ls -l /data/anr" output to bugreport
Bug: 123720446
Test: with adb bugreport
Change-Id: I2a00d370b8e61b4f0059cdf2d8d67136968a9f20
| -rw-r--r-- | cmds/dumpstate/dumpstate.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmds/dumpstate/dumpstate.cpp b/cmds/dumpstate/dumpstate.cpp index 0b9bca013c..69ced45ebb 100644 --- a/cmds/dumpstate/dumpstate.cpp +++ b/cmds/dumpstate/dumpstate.cpp @@ -937,6 +937,8 @@ static void AddAnrTraceFiles() { AddAnrTraceDir(add_to_zip, anr_traces_dir); + RunCommand("ANR FILES", {"ls", "-lt", ANR_DIR}); + // Slow traces for slow operations. struct stat st; int i = 0; |