Blame test/errno.awk

Packit 575503
BEGIN {
Packit 575503
  # check that PROCINFO["errno"] is working properly
Packit 575503
  getline
Packit 575503
  if (close(FILENAME)) {
Packit 575503
      print "Error `" ERRNO "' closing input file"
Packit 575503
      print "errno =", PROCINFO["errno"]
Packit 575503
  }
Packit 575503
  getline < (FILENAME "/bogus")
Packit 575503
  print (PROCINFO["errno"] > 0), ERRNO
Packit 575503
}