* tests/torture.at (Substitute and define special characters):
MinGW awk cannot handle 0xFF, and on MinGW, the test does the
wrong thing for CR.
Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+2008-03-04 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+ On MinGW, substitution of CR and 0xFF fails.
+ * tests/torture.at (Substitute and define special characters):
+ MinGW awk cannot handle 0xFF, and on MinGW, the test does the
+ wrong thing for CR.
+
2008-03-04 Eric Blake <ebb9@byu.net>
Pull in recent maintainer improvements from coreutils.
for j in 0 1 2 3 4 5 6 7; do
for k in 0 1 2 3 4 5 6 7; do
case $i$j$k in #(
- 000) ;; #(
+ 000 | 015 | 377) ;; # MinGW awk dislikes 0xFF, and the test does
+ # the wrong thing for CR on MinGW.
+ #(
*) printf \\$i$j$k's' ;; # The 's' works around a Solaris 8 /bin/bash bug.
esac
done