From 6f800703d3f63cc1c56ec5be1a7878ea54efce17 Mon Sep 17 00:00:00 2001 From: Jan Mercl <0xjnml@gmail.com> Date: Sun, 24 Oct 2021 18:00:29 +0200 Subject: [PATCH] TestConcurrentProcesses: enlarge timeout, enables slow builders to pass --- all_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/all_test.go b/all_test.go index c14363a..9392707 100644 --- a/all_test.go +++ b/all_test.go @@ -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) }