]> Cypherpunks repositories - gostls13.git/commit
misc/cgo/test: skip test7978 when using gccgo
authorIan Lance Taylor <iant@golang.org>
Sat, 20 Dec 2014 02:17:02 +0000 (18:17 -0800)
committerIan Lance Taylor <iant@golang.org>
Sat, 20 Dec 2014 02:38:38 +0000 (02:38 +0000)
commit421c01706fbcb4519d0a00215120e8ebd591d9e8
treeccbe96d41bcd2fc424571380f41c4d377ba67ca1
parent35dc312e722b8f485a9929f7c3415a93a02d1c2d
misc/cgo/test: skip test7978 when using gccgo

Gccgo can only get a backtrace for the currently running thread, which
means that it can only get a backtrace for goroutines currently running
Go code.  When a goroutine is running C code, gccgo has no way to stop
it and get the backtrace.  This test is all about getting a backtrace
of goroutines running C code, so it can't work for gccgo.

Change-Id: I2dff4403841fb544da7396562ab1193875fc14c3
Reviewed-on: https://go-review.googlesource.com/1904
Reviewed-by: Minux Ma <minux@golang.org>
misc/cgo/test/issue7978.go