From 698f3a4dbd8754a5c8bf1bf8f682d176f3bd24fb Mon Sep 17 00:00:00 2001 From: Andrei Vagin Date: Thu, 26 Mar 2020 20:03:34 +0300 Subject: [PATCH] zdtm: limit the line length for ps by 160 symbols By default, this limit is 80 symbols and this isn't enough: 4730 pts/0 S+ 0:00 \_ ./zdtm_ct zdtm.py 7535 4731 pts/0 S+ 0:00 | \_ python zdtm.py 7536 4839 pts/0 S+ 0:00 | \_ python zdtm.p 7537 4861 pts/0 S+ 0:00 | \_ make --no 7538 4882 pts/0 S+ 0:00 | \_ ./mnt 7539 4883 ? Ss 0:00 | \_ . Signed-off-by: Andrei Vagin --- test/zdtm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/zdtm.py b/test/zdtm.py index 0bd7b84cc..ac8d7bee0 100755 --- a/test/zdtm.py +++ b/test/zdtm.py @@ -1885,7 +1885,7 @@ class Launcher: pid, status = os.waitpid(0, flags) except OSError as e: if e.errno == errno.EINTR: - subprocess.Popen(["ps", "axf"]).wait() + subprocess.Popen(["ps", "axf", "--width", "160"]).wait() continue signal.alarm(0) raise e