go/ssa/interp: disable interpretation of packages that have sprouted Examples
since we can't interpret os.Pipe yet. Change-Id: If27dadc18532274ce97ad7e7557e8614dd15279e Reviewed-on: https://go-review.googlesource.com/11712 Reviewed-by: Robert Griesemer <gri@golang.org>
This commit is contained in:
parent
7e09e07243
commit
27bc91e0ba
|
@ -155,11 +155,9 @@ var testdataTests = []string{
|
||||||
// These are files and packages in $GOROOT/src/.
|
// These are files and packages in $GOROOT/src/.
|
||||||
var gorootSrcTests = []string{
|
var gorootSrcTests = []string{
|
||||||
"encoding/ascii85",
|
"encoding/ascii85",
|
||||||
"encoding/csv",
|
|
||||||
"encoding/hex",
|
"encoding/hex",
|
||||||
// "encoding/pem", // TODO(adonovan): implement (reflect.Value).SetString
|
// "encoding/pem", // TODO(adonovan): implement (reflect.Value).SetString
|
||||||
// "testing", // TODO(adonovan): implement runtime.Goexit correctly
|
// "testing", // TODO(adonovan): implement runtime.Goexit correctly
|
||||||
"text/scanner",
|
|
||||||
"unicode",
|
"unicode",
|
||||||
|
|
||||||
// Too slow:
|
// Too slow:
|
||||||
|
@ -172,6 +170,8 @@ var gorootSrcTests = []string{
|
||||||
// "log",
|
// "log",
|
||||||
// "path",
|
// "path",
|
||||||
// "flag",
|
// "flag",
|
||||||
|
// "encoding/csv"
|
||||||
|
// "text/scanner"
|
||||||
}
|
}
|
||||||
|
|
||||||
type successPredicate func(exitcode int, output string) error
|
type successPredicate func(exitcode int, output string) error
|
||||||
|
|
Loading…
Reference in New Issue