Duplicate tests that are run twice as both C and C++ tests to fix parallel make: li_cpointer
This commit is contained in:
parent
819bd9c97e
commit
a00b4f4463
6 changed files with 55 additions and 1 deletions
14
Examples/test-suite/go/li_cpointer_cpp_runme.go
Normal file
14
Examples/test-suite/go/li_cpointer_cpp_runme.go
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
package main
|
||||
|
||||
import . "./li_cpointer_cpp"
|
||||
|
||||
func main() {
|
||||
p := New_intp()
|
||||
Intp_assign(p, 3)
|
||||
|
||||
if Intp_value(p) != 3 {
|
||||
panic(0)
|
||||
}
|
||||
|
||||
Delete_intp(p)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue