mirror of https://github.com/golang/go.git
[dev.ssa] cmd/compile/internal/ssa: turn off runtime ssa tests
Fixes build. Not great, but it will let others make progress. Change-Id: If9cf2bbb5016e40aa91cf1c8bb62982ae2aed5e4 Reviewed-on: https://go-review.googlesource.com/14621 Reviewed-by: Keith Randall <khr@golang.org>
This commit is contained in:
parent
cde977c23c
commit
6793cb755c
|
|
@ -277,6 +277,11 @@ func (t *tester) registerStdTest(pkg string) {
|
|||
|
||||
// TODO: Remove when SSA codegen is used by default.
|
||||
func (t *tester) registerSSATest(pkg string) {
|
||||
switch pkg {
|
||||
// known failures
|
||||
case "runtime":
|
||||
return
|
||||
}
|
||||
t.tests = append(t.tests, distTest{
|
||||
name: "go_test_ssa:" + pkg,
|
||||
heading: "Testing packages with SSA codegen.",
|
||||
|
|
|
|||
Loading…
Reference in New Issue