libgo: Update to weekly.2011-11-02.

From-SVN: r181964
This commit is contained in:
Ian Lance Taylor 2011-12-03 02:17:34 +00:00
parent 02e9018f16
commit 2fd401c8f1
499 changed files with 4056 additions and 4239 deletions

View file

@ -6,7 +6,7 @@ package strings_test
import (
"bytes"
"os"
"io"
"reflect"
"strconv"
. "strings"
@ -759,7 +759,7 @@ func TestReadByte(t *testing.T) {
var res bytes.Buffer
for {
b, e := reader.ReadByte()
if e == os.EOF {
if e == io.EOF {
break
}
if e != nil {
@ -799,7 +799,7 @@ func TestReadRune(t *testing.T) {
res := ""
for {
r, z, e := reader.ReadRune()
if e == os.EOF {
if e == io.EOF {
break
}
if e != nil {