about summary refs log tree commit diff
path: root/REORG.TODO/math/test-matherr.c
diff options
context:
space:
mode:
Diffstat (limited to 'REORG.TODO/math/test-matherr.c')
-rw-r--r--REORG.TODO/math/test-matherr.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/REORG.TODO/math/test-matherr.c b/REORG.TODO/math/test-matherr.c
new file mode 100644
index 0000000000..6983879da4
--- /dev/null
+++ b/REORG.TODO/math/test-matherr.c
@@ -0,0 +1,24 @@
+#include <math.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+static int fail = 1;
+
+int
+matherr (struct exception *s)
+{
+  printf ("matherr is working\n");
+  fail = 0;
+  return 1;
+}
+
+static int
+do_test (void)
+{
+  _LIB_VERSION = _SVID_;
+  acos (2.0);
+  return fail;
+}
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"