Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
4e1dc539e97300c44589eff8baffd12c95a13d5f
/
.
/
shell
/
hush_test
/
hush-misc
/
exitcode2.tests
blob: 79a6ebd50e58b6976816f980f644b596837a7041 [
file
] [
log
] [
blame
]
# syntax error should return status 2
cat
>
test
.
sh
<<
EOF
)
EOF
chmod
+
x test
.
sh
$THIS_SH
./
test
.
sh
echo
Done
:
$
?
rm
-
f test
.
sh
# redirection error with special builtin should return status 1
(
eval
cat
<
does_not_exist
)
echo
Done
:
$
?