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

This commit is contained in:
William S Fulton 2016-02-21 14:47:25 +00:00
commit 9600c95234
11 changed files with 320 additions and 1 deletions

View file

@ -0,0 +1,14 @@
package main
import . "./li_carrays_cpp"
func main() {
d := NewDoubleArray(10)
d.Setitem(0, 7)
d.Setitem(5, d.Getitem(0)+3)
if d.Getitem(5)+d.Getitem(0) != 17 {
panic(0)
}
}