aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/race/output_test.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2016-09-24 17:07:35 +0200
committerDmitry Vyukov <dvyukov@google.com>2016-09-25 12:22:04 +0000
commit38765eba739461e5c5dc463860c62daee2eef4ee (patch)
tree78cb9825e6e5da296d8dfa2240aea1df36a20228 /src/runtime/race/output_test.go
parent9f1c78781b320b6d7cf83378b857c1168cb7fd0f (diff)
downloadgo-38765eba739461e5c5dc463860c62daee2eef4ee.tar.gz
go-38765eba739461e5c5dc463860c62daee2eef4ee.zip
runtime/race: don't crash on invalid PCs
Currently raceSymbolizeCode uses funcline, which is internal runtime function which crashes on incorrect PCs. Use FileLine instead, it is public and does not crash on invalid data. Note: FileLine returns "?" file on failure. That string is not NUL-terminated, so we need to additionally check what FileLine returns. Fixes #17190 Change-Id: Ic6fbd4f0e68ddd52e9b2dd25e625b50adcb69a98 Reviewed-on: https://go-review.googlesource.com/29714 Run-TryBot: Dmitry Vyukov <dvyukov@google.com> Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/runtime/race/output_test.go')
-rw-r--r--src/runtime/race/output_test.go71
1 files changed, 65 insertions, 6 deletions
diff --git a/src/runtime/race/output_test.go b/src/runtime/race/output_test.go
index f1dc4482f19..9158f0453c7 100644
--- a/src/runtime/race/output_test.go
+++ b/src/runtime/race/output_test.go
@@ -13,12 +13,17 @@ import (
"os/exec"
"path/filepath"
"regexp"
+ "runtime"
"strings"
"testing"
)
func TestOutput(t *testing.T) {
for _, test := range tests {
+ if test.goos != "" && test.goos != runtime.GOOS {
+ t.Logf("test %v runs only on %v, skipping: ", test.name, test.goos)
+ continue
+ }
dir, err := ioutil.TempDir("", "go-build")
if err != nil {
t.Fatalf("failed to create temp directory: %v", err)
@@ -67,11 +72,12 @@ func TestOutput(t *testing.T) {
var tests = []struct {
name string
run string
+ goos string
gorace string
source string
re string
}{
- {"simple", "run", "atexit_sleep_ms=0", `
+ {"simple", "run", "", "atexit_sleep_ms=0", `
package main
import "time"
func main() {
@@ -116,7 +122,7 @@ Found 1 data race\(s\)
exit status 66
`},
- {"exitcode", "run", "atexit_sleep_ms=0 exitcode=13", `
+ {"exitcode", "run", "", "atexit_sleep_ms=0 exitcode=13", `
package main
func main() {
done := make(chan bool)
@@ -130,7 +136,7 @@ func main() {
}
`, `exit status 13`},
- {"strip_path_prefix", "run", "atexit_sleep_ms=0 strip_path_prefix=/main.", `
+ {"strip_path_prefix", "run", "", "atexit_sleep_ms=0 strip_path_prefix=/main.", `
package main
func main() {
done := make(chan bool)
@@ -146,7 +152,7 @@ func main() {
go:7 \+0x[0-9,a-f]+
`},
- {"halt_on_error", "run", "atexit_sleep_ms=0 halt_on_error=1", `
+ {"halt_on_error", "run", "", "atexit_sleep_ms=0 halt_on_error=1", `
package main
func main() {
done := make(chan bool)
@@ -163,7 +169,7 @@ func main() {
exit status 66
`},
- {"test_fails_on_race", "test", "atexit_sleep_ms=0", `
+ {"test_fails_on_race", "test", "", "atexit_sleep_ms=0", `
package main_test
import "testing"
func TestFail(t *testing.T) {
@@ -182,7 +188,7 @@ PASS
Found 1 data race\(s\)
FAIL`},
- {"slicebytetostring_pc", "run", "atexit_sleep_ms=0", `
+ {"slicebytetostring_pc", "run", "", "atexit_sleep_ms=0", `
package main
func main() {
done := make(chan string)
@@ -198,4 +204,57 @@ func main() {
.*/runtime/string\.go:.*
main\.main\.func1\(\)
.*/main.go:7`},
+
+ // Test for http://golang.org/issue/17190
+ {"external_cgo_thread", "run", "linux", "atexit_sleep_ms=0", `
+package main
+
+/*
+#include <pthread.h>
+typedef struct cb {
+ int foo;
+} cb;
+extern void goCallback();
+static inline void *threadFunc(void *p) {
+ goCallback();
+ return 0;
+}
+static inline void startThread(cb* c) {
+ pthread_t th;
+ pthread_create(&th, 0, threadFunc, 0);
+}
+*/
+import "C"
+
+import "time"
+
+var racy int
+
+//export goCallback
+func goCallback() {
+ racy++
+}
+
+func main() {
+ var c C.cb
+ C.startThread(&c)
+ time.Sleep(time.Second)
+ racy++
+}
+`, `==================
+WARNING: DATA RACE
+Read at 0x[0-9,a-f]+ by main goroutine:
+ main\.main\(\)
+ .*/main\.go:34 \+0x[0-9,a-f]+
+
+Previous write at 0x[0-9,a-f]+ by goroutine [0-9]:
+ main\.goCallback\(\)
+ .*/main\.go:27 \+0x[0-9,a-f]+
+ main._cgoexpwrap_[0-9a-z]+_goCallback\(\)
+ .*/_cgo_gotypes\.go:[0-9]+ \+0x[0-9,a-f]+
+
+Goroutine [0-9] \(running\) created at:
+ runtime\.newextram\(\)
+ .*/runtime/proc.go:[0-9]+ \+0x[0-9,a-f]+
+==================`},
}