aboutsummaryrefslogtreecommitdiff
path: root/testdir
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-02-06 22:08:20 +0200
committerArnold D. Robbins <arnold@skeeve.com>2020-02-06 22:08:20 +0200
commitd7a7e4d1479ac90299401df3d5de513d1190b39f (patch)
treea02ec8beadcc3f3fd528b10fb32ef835c0cf101f /testdir
parent8447cc9d47e7d2d829cb5318824c3c07002b9ab7 (diff)
downloadone-true-awk-d7a7e4d1479ac90299401df3d5de513d1190b39f.tar.gz
Revert zoulas changes until we can keep tests passing.
Diffstat (limited to 'testdir')
-rwxr-xr-xtestdir/T.builtin8
1 files changed, 0 insertions, 8 deletions
diff --git a/testdir/T.builtin b/testdir/T.builtin
index b36f6cb..411a5e5 100755
--- a/testdir/T.builtin
+++ b/testdir/T.builtin
@@ -29,14 +29,6 @@ $awk '{ printf("%s|%s|%s\n", tolower($0), toupper($0), $0)}' >foo1
echo 'hello, world!|HELLO, WORLD!|hello, WORLD!' >foo2
diff foo1 foo2 || echo 'BAD: T.builtin (toupper/tolower)'
-
-if locale -a | grep -qsi de_DE.UTF-8; then
- (export LANG=de_DE.UTF-8 && echo 'Dürst' |
- $awk '{ printf("%s|%s|%s\n", tolower($0), toupper($0), $0)}') >foo1
- echo 'dürst|DÜRST|Dürst' >foo2
- diff foo1 foo2 || echo 'BAD: T.builtin (toupper/tolower) for utf-8'
-fi
-
$awk 'BEGIN {
j = 1; sprintf("%d", 99, ++j) # does j get incremented?
if (j != 2)