From: dalcinl Date: Mon, 3 May 2010 00:43:09 +0000 (-0300) Subject: Disable test for libc.stdint (missing stdint.h in MSVC) X-Git-Tag: 0.13.beta0~114 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9821a4481949bf6ec010635d005c3bba166acbc1;p=cython.git Disable test for libc.stdint (missing stdint.h in MSVC) --- diff --git a/tests/compile/libc_all.pyx b/tests/compile/libc_all.pyx index 8b232623..be428a40 100644 --- a/tests/compile/libc_all.pyx +++ b/tests/compile/libc_all.pyx @@ -7,7 +7,7 @@ cimport libc.limits cimport libc.locale cimport libc.signal cimport libc.stddef -cimport libc.stdint +#cimport libc.stdint # XXX MSVC cimport libc.stdio cimport libc.stdlib cimport libc.string @@ -18,7 +18,7 @@ from libc cimport limits from libc cimport locale from libc cimport signal from libc cimport stddef -from libc cimport stdint +#from libc cimport stdint # XXX MSVC from libc cimport stdio from libc cimport stdlib from libc cimport string @@ -29,7 +29,7 @@ from libc.limits cimport * from libc.locale cimport * from libc.signal cimport * from libc.stddef cimport * -from libc.stdint cimport * +#from libc.stdint cimport * # XXX MSVC from libc.stdio cimport * from libc.stdlib cimport * from libc.string cimport *