test.go: Skip manual tests in the -shard mode. (#2035)

This commit is contained in:
Michael Berlin 2016-09-08 17:36:43 -07:00 коммит произвёл GitHub
Родитель a75a7b6bcc
Коммит 6f10800c31
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -754,7 +754,7 @@ func selectedTests(args []string, config *Config) []*Test {
// This can be combined with positional args.
var names []string
for name, t := range config.Tests {
if t.Shard == *shard && (*exclude == "" || !t.hasAnyTag(excluded_tests)) {
if t.Shard == *shard && !t.Manual && (*exclude == "" || !t.hasAnyTag(excluded_tests)) {
t.name = name
names = append(names, name)
}