From 0538719e071db4527b791e7e65390718522121e4 Mon Sep 17 00:00:00 2001 From: Martijn Dekker Date: Fri, 9 Apr 2021 04:06:54 +0100 Subject: [PATCH] tests/basic.sh: fix embarrassing typo (re: 4a846a9d) --- src/cmd/ksh93/tests/basic.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/ksh93/tests/basic.sh b/src/cmd/ksh93/tests/basic.sh index fb00ba4a7..1301cffd8 100755 --- a/src/cmd/ksh93/tests/basic.sh +++ b/src/cmd/ksh93/tests/basic.sh @@ -617,7 +617,7 @@ esac # When running a script without a #! hashbang path, ksh attempts to replace argv with the arguments # of the script. However, fixargs() didn't wipe out the rest of previous arguments after the last # \0. This caused an erroneous record in /proc//cmdline and the output of the ps command. -cd '$tmp" +cd "$tmp" getPsOutput() { # UNIX95=1 makes this work on HP-UX. actual=$(UNIX95=1 ps -o args= -p "$1" 2>&1)