aboutsummaryrefslogtreecommitdiff
path: root/src/testing/testing_test.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2023-05-09 15:10:26 -0700
committerGopher Robot <gobot@golang.org>2023-05-24 04:06:14 +0000
commit5b93af7f4f61ccc7d770ee24641b2fd9c71c0329 (patch)
tree476170b0c3a76252d68c7d16707c584123861a37 /src/testing/testing_test.go
parent298fe517a9333c05143a8a8e1f9d5499f0c6e59b (diff)
downloadgo-5b93af7f4f61ccc7d770ee24641b2fd9c71c0329.tar.xz
testing: only report subtest races once
Before this CL the code would record the number of race detector errors seen before starting a test, and then report an error if there were more race detector errors after the test completed. That approach did not work well for subtests or parallel tests. Race detector errors could be reported multiple times at each level of subtest, and parallel tests could accidentally drop race detector errors. Instead, report each race detector error at most once, associated with whatever test noticed the new error. This is still imperfect, as it may report race detector errors for the wrong parallel test. But it shouldn't drop any errors entirely, and it shouldn't report any errors more than once. Fixes #60083 Change-Id: Ic9afea5c692b6553896757766f631cd0e86192ad Reviewed-on: https://go-review.googlesource.com/c/go/+/494057 Reviewed-by: Bryan Mills <bcmills@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Run-TryBot: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Auto-Submit: Ian Lance Taylor <iant@google.com>
Diffstat (limited to 'src/testing/testing_test.go')
-rw-r--r--src/testing/testing_test.go108
1 files changed, 108 insertions, 0 deletions
diff --git a/src/testing/testing_test.go b/src/testing/testing_test.go
index 5e9268779f..a18f323d04 100644
--- a/src/testing/testing_test.go
+++ b/src/testing/testing_test.go
@@ -6,6 +6,7 @@ package testing_test
import (
"bytes"
+ "internal/race"
"internal/testenv"
"os"
"path/filepath"
@@ -293,3 +294,110 @@ func TestTesting(t *testing.T) {
t.Errorf("in non-test testing.Test() returned %q, want %q", s, "false")
}
}
+
+// runTest runs a helper test with -test.v.
+// It returns the test output and test exit status.
+func runTest(t *testing.T, test string) ([]byte, error) {
+ t.Helper()
+
+ testenv.MustHaveExec(t)
+
+ exe, err := os.Executable()
+ if err != nil {
+ t.Skipf("can't find test executable: %v", err)
+ }
+
+ cmd := testenv.Command(t, exe, "-test.run="+test, "-test.v", "-test.parallel=2")
+ cmd = testenv.CleanCmdEnv(cmd)
+ cmd.Env = append(cmd.Env, "GO_WANT_HELPER_PROCESS=1")
+ out, err := cmd.CombinedOutput()
+ t.Logf("%s", out)
+
+ return out, err
+}
+
+// generateRaceReport generates a race detector report if run under
+// the race detector.
+func generateRaceReport() {
+ var x int
+ c1 := make(chan bool)
+ c2 := make(chan int, 1)
+ go func() {
+ x = 1 // racy write
+ c1 <- true
+ }()
+ c2 <- x // racy read
+ <-c1
+}
+
+func TestRaceReports(t *testing.T) {
+ if os.Getenv("GO_WANT_HELPER_PROCESS") == "1" {
+ // Generate a race detector report in a sub test.
+ t.Run("Sub", func(t *testing.T) {
+ generateRaceReport()
+ })
+ return
+ }
+
+ out, _ := runTest(t, "TestRaceReports")
+
+ // We should see at most one race detector report.
+ c := bytes.Count(out, []byte("race detected"))
+ want := 0
+ if race.Enabled {
+ want = 1
+ }
+ if c != want {
+ t.Errorf("got %d race reports, want %d", c, want)
+ }
+}
+
+// Issue #60083. This used to fail on the race builder.
+func TestRaceName(t *testing.T) {
+ if os.Getenv("GO_WANT_HELPER_PROCESS") == "1" {
+ generateRaceReport()
+ return
+ }
+
+ out, _ := runTest(t, "TestRaceName")
+
+ if bytes.Contains(out, []byte("=== NAME \n")) {
+ t.Errorf("incorrectly reported test with no name")
+ }
+}
+
+func TestRaceSubReports(t *testing.T) {
+ if os.Getenv("GO_WANT_HELPER_PROCESS") == "1" {
+ t.Parallel()
+ c1 := make(chan bool, 1)
+ c2 := make(chan bool, 1)
+ t.Run("sub", func(t *testing.T) {
+ t.Run("subsub1", func(t *testing.T) {
+ t.Parallel()
+ generateRaceReport()
+ c1 <- true
+ })
+ t.Run("subsub2", func(t *testing.T) {
+ t.Parallel()
+ <-c1
+ generateRaceReport()
+ c2 <- true
+ })
+ })
+ <-c2
+ generateRaceReport()
+ return
+ }
+
+ out, _ := runTest(t, "TestRaceSubReports")
+
+ // There should be three race reports.
+ c := bytes.Count(out, []byte("race detected during execution of test"))
+ want := 0
+ if race.Enabled {
+ want = 3
+ }
+ if c != want {
+ t.Errorf("got %d race reports, want %d", c, want)
+ }
+}