xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/closebad.awk (revision 3ee4fc2aa6b5136515cc3eed32d3c6ef33e37471)
1*3ee4fc2aSCody Peter MelloBEGIN {
2*3ee4fc2aSCody Peter Mello	f = "/no/such/file/1"
3*3ee4fc2aSCody Peter Mello	print (getline junk < f)
4*3ee4fc2aSCody Peter Mello	print close(f)
5*3ee4fc2aSCody Peter Mello	f = "/no/such/file/2"
6*3ee4fc2aSCody Peter Mello	print close(f)
7*3ee4fc2aSCody Peter Mello}
8