source: vendor/bash/3.1/tests/builtins.tests@ 3232

Last change on this file since 3232 was 3228, checked in by bird, 19 years ago

bash 3.1

File size: 5.3 KB
RevLine 
[3228]1# tests for miscellaneous builtins not tested elsewhere
2set +p
3set +o posix
4
5ulimit -c 0 2>/dev/null
6
7# check that break breaks loops
8for i in a b c; do echo $i; break; echo bad-$i; done