xref: /freebsd/contrib/unifdef/tests/outperms.sh (revision b2d2a78ad80ec68d4a17f5aef97d21686cb1e29b)
1umask 027
2unifdef -DFOO=1 -DFOOB=42 -UBAR -ooutfile.c if1.c
3e=$?
4case ${BUILD_MINGW} in
5(yes)	printf '%s\n' '-rw-r-----' 1>&2 ;;
6(*)	ls -l outfile.c | cut -d' ' -f1 1>&2 ;;
7esac
8cat outfile.c
9rm outfile.c
10exit $e
11