Commit 128a280
authored
OOM sub_test fix 'ps' line splitting to find child process (#28424)
I noticed in some failed runs that the output from `ps` puts two spaces
between PID and PPID, but Python `split` is invoked with just a single
space a separator, so the field indices are thrown off. Fixed by
removing that separator arg to use the default of splitting on any
length chunk of whitespace.
[trivial fix, not reviewed]1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
76 | | - | |
77 | | - | |
| 76 | + | |
| 77 | + | |
78 | 78 | | |
79 | 79 | | |
80 | 80 | | |
| |||
0 commit comments