From 846482f49d7cf15b749c5b67ab8268f4d82297a4 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Fri, 17 Nov 2023 03:03:42 -0500 Subject: [PATCH] gen-strtab.awk: Work around HP-UX shell bug in test case. On HP-UX /bin/sh, redirections on "read" in a subshell can drop some input on the floor. Since Autotest runs many things in subshells, we hit this when trying to construct the program to dump the string table. Rearranging the code to use only a single redirection works around the problem. --- tests/scripts.at | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/tests/scripts.at b/tests/scripts.at index 880bb6c..dbec2c9 100644 --- a/tests/scripts.at +++ b/tests/scripts.at @@ -331,21 +331,18 @@ AT_CHECK([$AWK -f "$srcdir/scripts/gen-strtab.awk" test.h]) sed -n 's/^[[&]]\([[^ ]]*\).*/\1/p' test.def >identifiers # test 0: sanity test -AT_DATA([test0.c], -[[#include "test.h" +{ cat <<'EOF' +#include "test.h" #include int main(void) { printf("---\n"); -]]) -exec 3>test0.c -while read ident <&3; do - AS_ECHO([' printf("%s\n---\n", '"strtab+$ident);"]) >&4 -done -AS_ECHO([' return 0;']) >&4 -AS_ECHO(['}']) >&4 -exec 3<&- 4>&- +EOF +while read id; do AS_ECHO([' printf("%s\n---\n", strtab+'"$id"');']); done +AS_ECHO([' return 0;']) +AS_ECHO(['}']) +} test0.c AT_CHECK([$CC -o test0$EXEEXT test0.c && ./test0$EXEEXT], [0], [--- world -- 2.43.2