From fe8b6916f06df2dd63b0cb94ee1277e307a213f0 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 19 Dec 2016 15:18:07 +0100 Subject: [PATCH] [xharness] Show better info in process list. (#1365) --- tests/xharness/Process_Extensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/xharness/Process_Extensions.cs b/tests/xharness/Process_Extensions.cs index e9c8546f8b..ce115d7c9a 100644 --- a/tests/xharness/Process_Extensions.cs +++ b/tests/xharness/Process_Extensions.cs @@ -158,7 +158,7 @@ namespace xharness using (var ps = new Process ()) { log.WriteLine ("Writing process list:"); ps.StartInfo.FileName = "ps"; - ps.StartInfo.Arguments = "aux"; + ps.StartInfo.Arguments = "-A -o pid,ruser,ppid,pgid,%cpu=%CPU,%mem=%MEM,flags=FLAGS,lstart,rss,vsz,tty,state,time,command"; await ps.RunAsync (log, true, TimeSpan.FromSeconds (5)); }