libgo: Update to weekly.2012-01-20.

From-SVN: r183540
This commit is contained in:
Ian Lance Taylor 2012-01-25 21:54:22 +00:00
parent df1304ee03
commit af92e38566
198 changed files with 5123 additions and 1951 deletions

View file

@ -25,13 +25,6 @@ func RunExamples(examples []InternalExample) (ok bool) {
var eg InternalExample
stdout, stderr := os.Stdout, os.Stderr
defer func() {
os.Stdout, os.Stderr = stdout, stderr
if e := recover(); e != nil {
fmt.Printf("--- FAIL: %s\npanic: %v\n", eg.Name, e)
os.Exit(1)
}
}()
for _, eg = range examples {
if *chatty {