From 6e886f07a8f8cdad8ffb056d6133b49a79a0d216 Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Thu, 28 Jul 2016 16:49:45 +0200 Subject: [PATCH] Fix #72676: Test cli_process_title_unix fails on AIX Patch provided by matthieu dot sarter dot external at atos dot net. --- sapi/cli/tests/cli_process_title_unix.phpt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sapi/cli/tests/cli_process_title_unix.phpt b/sapi/cli/tests/cli_process_title_unix.phpt index c2632704c5..659299c1fc 100644 --- a/sapi/cli/tests/cli_process_title_unix.phpt +++ b/sapi/cli/tests/cli_process_title_unix.phpt @@ -15,7 +15,12 @@ $pid = getmypid(); if (cli_set_process_title($original_title) === true) echo "Successfully set title\n"; -$ps_output = shell_exec("ps -p $pid -o command | tail -n 1"); +$ps_process_title_field = "command"; +if (strtoupper(substr(PHP_OS, 0, 3)) == "AIX") +{ + $ps_process_title_field = "args"; +} +$ps_output = shell_exec("ps -p $pid -o $ps_process_title_field | tail -n 1"); if ($ps_output === null) { -- 2.49.0