summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--tests/basics/errno1.py15
-rw-r--r--tests/basics/errno1.py.exp2
2 files changed, 17 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:])
diff --git a/tests/basics/errno1.py.exp b/tests/basics/errno1.py.exp
new file mode 100644
index 0000000000..e60fdf0490
--- /dev/null
+++ b/tests/basics/errno1.py.exp
@@ -0,0 +1,2 @@
+<class 'int'>
+[Errno ] EIO