From: Nick Bowler Date: Tue, 2 Jan 2024 04:40:30 +0000 (-0500) Subject: Bump dxcommon to pull in AIX fixes. X-Git-Tag: v1.3~51 X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/commitdiff_plain/88203f87b45548f1751a750ab0ec835eaf945636 Bump dxcommon to pull in AIX fixes. And apply a similar fix to the testsuite to avoid the use of awk -f -, which does not work on AIX 7.2. --- diff --git a/common b/common index 9060b3e..b045c0c 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 9060b3e8d2ac9296abb97f159895718cd233f3bc +Subproject commit b045c0c5e35a1558e6b77d99e0ed8ab86d6dc550 diff --git a/tests/general.at b/tests/general.at index 7b34b9d..f73f781 100644 --- a/tests/general.at +++ b/tests/general.at @@ -1,4 +1,4 @@ -# Copyright © 2012, 2020-2021, 2023 Nick Bowler +# Copyright © 2012, 2020-2021, 2023-2024 Nick Bowler # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -149,15 +149,13 @@ AT_CLEANUP AT_SETUP([cdecl99 invalid character error messages]) -$AWK -f - >test.dat <<'EOF' -BEGIN { +$AWK 'BEGIN { print "explain \1"; print "explain \377"; print "explain \a"; print "explain \b"; print "explain ?"; -} -EOF +}' >test.dat