Remove unneeded cpp_exception compile test.
authorRobert Bradshaw <robertwb@math.washington.edu>
Fri, 6 Nov 2009 05:09:47 +0000 (21:09 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Fri, 6 Nov 2009 05:09:47 +0000 (21:09 -0800)
It's 100% redundant with the test in the run directory, and fails on Windows.

tests/compile/cpp_exceptions.h [deleted file]
tests/compile/cpp_exceptions_T265.pyx [deleted file]

diff --git a/tests/compile/cpp_exceptions.h b/tests/compile/cpp_exceptions.h
deleted file mode 100644 (file)
index c9ec834..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-extern int generic_error(void);
-extern int specified_error(void);
-extern int dynamic_error(void);
diff --git a/tests/compile/cpp_exceptions_T265.pyx b/tests/compile/cpp_exceptions_T265.pyx
deleted file mode 100644 (file)
index de7003e..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-cdef void raise_py_error():
-    pass
-
-cdef extern from "cpp_exceptions.h":
-    cdef int generic_error() except +
-    cdef int specified_error() except +MemoryError
-    cdef int dynamic_error() except +raise_py_error
-
-def test_it():
-    generic_error()
-    specified_error()
-    dynamic_error()