Duplicate tests that are run twice as both C and C++ tests to fix parallel make: li_cpointer

This commit is contained in:
William S Fulton 2016-02-21 15:08:24 +00:00
commit a00b4f4463
6 changed files with 55 additions and 1 deletions

View file

@ -0,0 +1,10 @@
from li_cpointer_cpp import *
p = new_intp()
intp_assign(p, 3)
if intp_value(p) != 3:
raise RuntimeError
delete_intp(p)