shithub: kwa

ref: 3206ebbc2fbd2d489d12a559b5d4e68fdfdc5ffc
dir: /test/T.builtin.broken/

View raw version
#!/bin/rc
echo T.builtin: test miscellaneous builtin functions >[1=2]

# Test for backslash handling
cat <<'EOF' >foo0
BEGIN {
    print "A\
B";
    print "CD"
}
EOF
$awk -f foo0 /dev/null >foo1
cat <<'EOF' >foo2
AB
CD
EOF
diff foo1 foo2 || echo 'BAD: T.builtin: continuation handling (backslash)' >[1=2]