Commit 77132c81 authored by Dmitry Vyukov's avatar Dmitry Vyukov Committed by Russ Cox

runtime/race: enable tests that now pass

These tests pass after cl/11417.

Change-Id: Id98088c52e564208ce432e9717eddd672c42c66d
Reviewed-on: https://go-review.googlesource.com/11551Reviewed-by: 's avatarRuss Cox <rsc@golang.org>
parent 03a48ebe
......@@ -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() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment