From 8f0f0b012333e0339bd827b75d869713c1580cae Mon Sep 17 00:00:00 2001 From: Jonatan Wallmander Date: Thu, 21 Nov 2024 10:05:14 +0100 Subject: [PATCH] feat: test framework supports turning off -race flag This is useful on Windows where gcc is not always available. --- testscript/script_test.go | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/testscript/script_test.go b/testscript/script_test.go index 43fdde900..644371f88 100644 --- a/testscript/script_test.go +++ b/testscript/script_test.go @@ -34,6 +34,15 @@ var ( binPath string ) +func PrepareBuildCommand(binPath string) *exec.Cmd { + _, disableRaceSet := os.LookupEnv("SOFT_SERVE_DISABLE_RACE_CHECKS") + if disableRaceSet { + // don't add the -race flag + return exec.Command("go", "build", "-cover", "-o", binPath, filepath.Join("..", "cmd", "soft")) + } + return exec.Command("go", "build", "-race", "-cover", "-o", binPath, filepath.Join("..", "cmd", "soft")) +} + func TestMain(m *testing.M) { tmp, err := os.MkdirTemp("", "soft-serve*") if err != nil { @@ -48,7 +57,7 @@ func TestMain(m *testing.M) { } // Build the soft binary with -cover flag. - cmd := exec.Command("go", "build", "-race", "-cover", "-o", binPath, filepath.Join("..", "cmd", "soft")) + cmd := PrepareBuildCommand(binPath) if err := cmd.Run(); err != nil { fmt.Fprintf(os.Stderr, "failed to build soft-serve binary: %s", err) os.Exit(1)