blob: 1a4d1048c99088f79e2c4071a64853fde9da34c6 [file] [log] [blame]
// Copyright 2015 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"strings"
"testing"
)
func TestPartitionGoTests(t *testing.T) {
var in []string
for name := range fixedTestDuration {
in = append(in, name)
}
sets := partitionGoTests("", in)
for i, set := range sets {
t.Logf("set %d = \"-run=^(%s)$\"", i, strings.Join(set, "|"))
}
}