Blame test/exitval1.awk

Packit 575503
# This should exit 0, even though child exits 1
Packit 575503
BEGIN { "exit 1" | getline junk ; exit 12 }
Packit 575503
END { exit 0 }