From ce4b1fa54fb01a782ad87f66b86d6f43ed9e71cd Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Sat, 1 Jul 2023 15:28:15 -0400 Subject: [PATCH] Work around Solaris 8 nawk issue in the test suite. Apparently "nawk" on Solaris 8 does not understand -f- to mean "read program from standard input", we must spell it as two arguments: -f - --- tests/general.at | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/general.at b/tests/general.at index 5141902..776c619 100644 --- a/tests/general.at +++ b/tests/general.at @@ -120,7 +120,7 @@ AT_CLEANUP AT_SETUP([cdecl99 invalid character error messages]) -$AWK -f- >test.dat test.dat <<'EOF' BEGIN { print "explain \1"; print "explain \377"; -- 2.43.2