]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tools/regression/bin/sh/set-e/while3.0
This commit was generated by cvs2svn to compensate for changes in r175801,
[FreeBSD/FreeBSD.git] / tools / regression / bin / sh / set-e / while3.0
1 # $FreeBSD$
2 set -e
3 f() {
4         while true; do
5                 false
6                 break
7         done
8 }
9 f || true