From: Dmitry Vyukov Date: Fri, 26 Jun 2015 16:09:23 +0000 (+0200) Subject: runtime/race: enable tests that now pass X-Git-Tag: go1.5beta1~91 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=77132c810d66971318d898190c3ad02b3eedca40;p=gostls13.git runtime/race: enable tests that now pass These tests pass after cl/11417. Change-Id: Id98088c52e564208ce432e9717eddd672c42c66d Reviewed-on: https://go-review.googlesource.com/11551 Reviewed-by: Russ Cox --- diff --git a/src/runtime/race/testdata/mop_test.go b/src/runtime/race/testdata/mop_test.go index b4b0ba04ce..7f95051a8c 100644 --- a/src/runtime/race/testdata/mop_test.go +++ b/src/runtime/race/testdata/mop_test.go @@ -1598,7 +1598,7 @@ func TestRaceSliceSlice(t *testing.T) { <-c } -func TestRaceSliceSlice2Failing(t *testing.T) { +func TestRaceSliceSlice2(t *testing.T) { c := make(chan bool, 1) x := make([]int, 10) i := 2 @@ -1610,7 +1610,7 @@ func TestRaceSliceSlice2Failing(t *testing.T) { <-c } -func TestRaceSliceStringFailing(t *testing.T) { +func TestRaceSliceString(t *testing.T) { c := make(chan bool, 1) x := "hello" go func() {