From 9821a4481949bf6ec010635d005c3bba166acbc1 Mon Sep 17 00:00:00 2001 From: dalcinl Date: Sun, 2 May 2010 21:43:09 -0300 Subject: [PATCH] Disable test for libc.stdint (missing stdint.h in MSVC) --- tests/compile/libc_all.pyx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 * -- 2.26.2