TestConcurrentProcesses: enlarge timeout, enables slow builders to pass

This commit is contained in:
Jan Mercl
2021-10-24 18:00:29 +02:00
parent 9f43b4373b
commit 6f800703d3

View File

@@ -630,7 +630,7 @@ outer:
}
fmt.Printf("exec: %s db %s\n", filepath.FromSlash(bin), script)
out, err := exec.Command(filepath.FromSlash(bin), "db", script).CombinedOutput()
out, err := exec.Command(filepath.FromSlash(bin), "db", "--timeout", "20000", script).CombinedOutput()
if err != nil {
t.Fatalf("%s\n%v", out, err)
}