testing: shorten some more tests
R=rsc CC=golang-dev https://golang.org/cl/4314044
This commit is contained in:
parent
a39229ebc1
commit
dc6468fcf1
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user