summaryrefslogtreecommitdiff
path: root/setjmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'setjmp.c')
-rw-r--r--setjmp.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/setjmp.c b/setjmp.c
new file mode 100644
index 0000000..73f7efc
--- /dev/null
+++ b/setjmp.c
@@ -0,0 +1,21 @@
+#include <setjmp.h>
+#include "test.h"
+
+void test_setjmp_h(void)
+{
+ jmp_buf jb;
+ int r;
+ int expected = 0;
+
+ testing_header("setjmp.h");
+
+ r = setjmp(jb);
+ test_int_equals(r, expected);
+
+ if (r == 0) {
+ expected = 1;
+ longjmp(jb, 1);
+ }
+
+ testing_end();
+}