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:
Alan Donovan 2015-06-29 15:01:33 -04:00
parent 7e09e07243
commit 27bc91e0ba
1 changed files with 2 additions and 2 deletions

View File

@ -155,11 +155,9 @@ var testdataTests = []string{
// These are files and packages in $GOROOT/src/.
var gorootSrcTests = []string{
"encoding/ascii85",
"encoding/csv",
"encoding/hex",
// "encoding/pem", // TODO(adonovan): implement (reflect.Value).SetString
// "testing", // TODO(adonovan): implement runtime.Goexit correctly
"text/scanner",
"unicode",
// Too slow:
@ -172,6 +170,8 @@ var gorootSrcTests = []string{
// "log",
// "path",
// "flag",
// "encoding/csv"
// "text/scanner"
}
type successPredicate func(exitcode int, output string) error