diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2015-06-24 18:51:06 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2015-06-25 11:36:07 +0000 |
| commit | 055e1a3ae7884df71da17dadc2acae227444e4d6 (patch) | |
| tree | b034076b2d977c9230327f256ed50403a3108594 /src/runtime/race/testdata | |
| parent | 1045351cef21a64d954b4477af9f5105ea4287d3 (diff) | |
| download | go-055e1a3ae7884df71da17dadc2acae227444e4d6.tar.xz | |
runtime/race: fix test driver
At some point it silently stopped recognizing test output.
Meanwhile two tests degraded...
Change-Id: I90a0325fc9aaa16c3ef16b9c4c642581da2bb10c
Reviewed-on: https://go-review.googlesource.com/11416
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/runtime/race/testdata')
| -rw-r--r-- | src/runtime/race/testdata/mop_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/race/testdata/mop_test.go b/src/runtime/race/testdata/mop_test.go index 7f95051a8c..b4b0ba04ce 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 TestRaceSliceSlice2(t *testing.T) { +func TestRaceSliceSlice2Failing(t *testing.T) { c := make(chan bool, 1) x := make([]int, 10) i := 2 @@ -1610,7 +1610,7 @@ func TestRaceSliceSlice2(t *testing.T) { <-c } -func TestRaceSliceString(t *testing.T) { +func TestRaceSliceStringFailing(t *testing.T) { c := make(chan bool, 1) x := "hello" go func() { |
