]> Cypherpunks.ru repositories - gostls13.git/commitdiff
18 tests are behaving incorrectly
authorRob Pike <r@golang.org>
Wed, 7 Jan 2009 04:17:58 +0000 (20:17 -0800)
committerRob Pike <r@golang.org>
Wed, 7 Jan 2009 04:17:58 +0000 (20:17 -0800)
no more surprises - all caught up

R=rsc
DELTA=4  (0 added, 0 deleted, 4 changed)
OCL=22194
CL=22194

test/complit.go

index 67064fe2399561ddaa68e8af4d6048292e99b079..82e38f41d1bbb5c10f3f796d6c74e06bc46f0331 100644 (file)
@@ -42,10 +42,10 @@ func main() {
        //if len(a3) != 10 || a2[3] != 0 { panic("a3") }
 
        var oai []int;
-       oai = &[]int{1,2,3};
+       oai = []int{1,2,3};
        if len(oai) != 3 { panic("oai") }
 
-       at := []*T{&t, &t, &t};
+       at := [...]*T{&t, &t, &t};
        if len(at) != 3 { panic("at") }
 
        c := make(chan int);
@@ -53,7 +53,7 @@ func main() {
        if len(ac) != 3 { panic("ac") }
 
        aat := [][len(at)]*T{at, at};
-       if len(aat) != 2 || len(aat[1]) != 3 { panic("at") }
+       if len(aat) != 2 || len(aat[1]) != 3 { panic("aat") }
 
        s := string([]byte{'h', 'e', 'l', 'l', 'o'});
        if s != "hello" { panic("s") }
@@ -61,7 +61,7 @@ func main() {
        m := map[string]float{"one":1.0, "two":2.0, "pi":22./7.};
        if len(m) != 3 { panic("m") }
 
-       eq(&[]*R{itor(0), itor(1), itor(2), itor(3), itor(4), itor(5)});
+       eq([]*R{itor(0), itor(1), itor(2), itor(3), itor(4), itor(5)});
 
        p1 := NewP(1, 2);
        p2 := NewP(1, 2);