summaryrefslogtreecommitdiff
path: root/tests/run/libcpp_all.pyx
diff options
context:
space:
mode:
authorda_woods <n/a>2015-05-09 13:29:15 +0100
committerda_woods <n/a>2015-05-09 13:29:15 +0100
commit0cee89e246c3af3657cb468d1e80a54c215c3a4b (patch)
treeddee0abef740df75f737bc3d49fbefe8c9deed9e /tests/run/libcpp_all.pyx
parentd3f669a20f26ebf9f85fdd13a683e6af03cd804a (diff)
downloadcython-0cee89e246c3af3657cb468d1e80a54c215c3a4b.tar.gz
Moved location of test for libcpp.complex
Added it to libcpp_all (where it should have been) instead of a custom compile test. complex isn't actually tested in libcpp_all, except that it can be cimported
Diffstat (limited to 'tests/run/libcpp_all.pyx')
-rw-r--r--tests/run/libcpp_all.pyx2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/run/libcpp_all.pyx b/tests/run/libcpp_all.pyx
index 829f2a780..de75797de 100644
--- a/tests/run/libcpp_all.pyx
+++ b/tests/run/libcpp_all.pyx
@@ -12,6 +12,7 @@ cimport libcpp.queue
cimport libcpp.set
cimport libcpp.stack
cimport libcpp.vector
+cimport libcpp.complex
from libcpp.deque cimport *
from libcpp.list cimport *
@@ -21,6 +22,7 @@ from libcpp.queue cimport *
from libcpp.set cimport *
from libcpp.stack cimport *
from libcpp.vector cimport *
+from libcpp.complex cimport *
cdef libcpp.deque.deque[int] d1 = deque[int]()
cdef libcpp.list.list[int] l1 = list[int]()