diff options
Diffstat (limited to 'tests/basics/errno1.py')
-rw-r--r-- | tests/basics/errno1.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/basics/errno1.py b/tests/basics/errno1.py new file mode 100644 index 0000000000..680104481b --- /dev/null +++ b/tests/basics/errno1.py @@ -0,0 +1,15 @@ +# test errno's and uerrno module + +try: + import uerrno +except ImportError: + print("SKIP") + import sys + sys.exit() + +# 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)) +print(msg[:7], msg[-5:]) |