[dev.garbage] runtime: fix TestLFStack on 386

LGTM=rlh
R=rlh, dvyukov
CC=golang-codereviews
https://golang.org/cl/157430044
This commit is contained in:
Russ Cox 2014-10-27 15:57:07 -04:00
parent 9efe7e819d
commit 0f66d785cf
3 changed files with 3 additions and 2 deletions

View file

@ -121,7 +121,7 @@ func TestLFStackStress(t *testing.T) {
}
cnt++
sum2 += node.data
node.Next = nil
node.Next = 0
}
}
if cnt != K {