2016-09-16 01:33:51 -04:00
|
|
|
# test errno's and uerrno module
|
|
|
|
|
|
|
|
try:
|
|
|
|
import uerrno
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
2017-06-10 13:03:01 -04:00
|
|
|
raise SystemExit
|
2016-09-16 01:33:51 -04:00
|
|
|
|
|
|
|
# check that constants exist and are integers
|
|
|
|
print(type(uerrno.EIO))
|
|
|
|
|
|
|
|
# check that errors are rendered in a nice way
|
|
|
|
msg = str(OSError(uerrno.EIO))
|
2018-05-14 22:55:21 -04:00
|
|
|
print(msg[:7], msg[msg.find(']'):])
|
|
|
|
|
|
|
|
msg = str(OSError(uerrno.ENOBUFS))
|
|
|
|
print(msg[:7], msg[msg.find(']'):])
|
2016-09-30 02:45:10 -04:00
|
|
|
|
|
|
|
# check that unknown errno is still rendered
|
|
|
|
print(str(OSError(9999)))
|
2017-12-19 00:13:00 -05:00
|
|
|
|
|
|
|
# this tests a failed constant lookup in errno
|
|
|
|
errno = uerrno
|
|
|
|
print(errno.__name__)
|