Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
42ba757d5e80ba25cc192939aa3525049f9e092f
/
.
/
shell
/
ash_test
/
ash-vars
/
readonly1.tests
blob: 81b461f5f611202d85bb6780ccc854860a54787f [
file
] [
log
] [
blame
]
readonly
bla
=
123
# Bare "eval bla=123" should abort ("eval" is a special builtin):
(
eval
bla
=
123
2
>
/dev/
null
;
echo BUG
)
echo
One
:
$
?
# "command BLTIN" disables "special-ness", should not abort:
command
eval
bla
=
123
2
>
/dev/
null
echo
One
:
$
?