testing: shorten some more tests

R=rsc
CC=golang-dev
https://golang.org/cl/4314044
This commit is contained in:
Rob Pike 2011-03-26 11:25:22 -07:00
parent a39229ebc1
commit dc6468fcf1

View File

@ -34,7 +34,11 @@ func TestMarshalUnmarshal(t *testing.T) {
for i, iface := range tests {
ty := reflect.NewValue(iface).Type()
for j := 0; j < 100; j++ {
n := 100
if testing.Short() {
n = 5
}
for j := 0; j < n; j++ {
v, ok := quick.Value(ty, rand)
if !ok {
t.Errorf("#%d: failed to create value", i)