[process list] make the TRIPLE column wider
authorWalter Erquinigo <a20012251@gmail.com>
Thu, 3 Oct 2019 21:57:01 +0000 (21:57 +0000)
committerWalter Erquinigo <a20012251@gmail.com>
Thu, 3 Oct 2019 21:57:01 +0000 (21:57 +0000)
commite0a398bf3195746d026d06721a5521d21cc23f3e
tree8f06aabaf455d73a4169cb8be93960cd0aed12c7
parent48b38c93bc02fd3625118100d0d74224ee25fd2e
[process list] make the TRIPLE column wider

Summary:
Now that `process list` works better on the android platform, the arch aarch64-unknown-linux-android appears quite often.
The existing printed width of the TRIPLE column is not long enough, which doesn't look okay.
E.g.
```
1561   1016                    aarch64-unknown-linux-android ip6tables-restore
1999   1                       aarch64-unknown-linux-android tlc_server
2332   982                                              com.android.systemui
2378   983                                              webview_zygote
```

Now, after adding 6 spaces, it looks better

```
PID    PARENT USER       TRIPLE                         NAME
====== ====== ========== ============================== ============================
...
1561   1016              aarch64-unknown-linux-android  ip6tables-restore
1999   1                 aarch64-unknown-linux-android  tlc_server
2332   982                                              com.android.systemui
2378   983                                              webview_zygote
2448   982                                              com.sec.location.nsflp2
```

Reviewers: clayborg, labath, xiaobai, aadsm

Reviewed By: labath

Subscribers: srhines, kristof.beyls, lldb-commits

Tags: #lldb

Differential Revision: https://reviews.llvm.org/D68291

llvm-svn: 373670
lldb/source/Utility/ProcessInfo.cpp
lldb/unittests/Utility/ProcessInstanceInfoTest.cpp