1
0
Fork 0
bash/tests/varenv22.sub
Daniel Baumann fa1b3d3922
Adding upstream version 5.2.37.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 06:49:21 +02:00

17 lines
456 B
Text

# test behavior of FUNCNAME in and out of parse_and_execute scenarios
# in parse_and_execute
${THIS_SH} -c 'trap "echo trap:\$FUNCNAME" EXIT ; trap ; f() { exit; } ; f' bash
${THIS_SH} << \EOF
eval "trap 'echo trap:\$FUNCNAME' EXIT ; trap; f() { exit; } ; f"
EOF
# not in parse_and_execute
${THIS_SH} << \EOF
trap 'echo trap:$FUNCNAME' EXIT ; trap; f() { exit; } ; f
EOF
# this has to be last
trap 'echo trap:$FUNCNAME' EXIT ; trap; f() { exit; } ; f