summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/errno1.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basics/errno1.py')
-rw-r--r--tests/basics/errno1.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/basics/errno1.py b/tests/basics/errno1.py
new file mode 100644
index 0000000000..eae1bbe1b4
--- /dev/null
+++ b/tests/basics/errno1.py
@@ -0,0 +1,18 @@
+# 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:])
+
+# check that unknown errno is still rendered
+print(str(OSError(9999)))