diff options
| author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-12-02 19:34:41 +0000 |
|---|---|---|
| committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-12-02 19:34:41 +0000 |
| commit | 0ba415ab214ea7bc9c0b5a31e809998686d8b511 (patch) | |
| tree | fe0344f264049738dca876a6dd2f69e96621ca17 /libgo/go/encoding | |
| parent | b2c1d8d78d1a819c3cbadc61dea50b856a4f0607 (diff) | |
| download | ppe42-gcc-0ba415ab214ea7bc9c0b5a31e809998686d8b511.tar.gz ppe42-gcc-0ba415ab214ea7bc9c0b5a31e809998686d8b511.zip | |
libgo: Update to weekly.2011-11-01.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@181938 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo/go/encoding')
| -rw-r--r-- | libgo/go/encoding/binary/binary_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libgo/go/encoding/binary/binary_test.go b/libgo/go/encoding/binary/binary_test.go index b266996f635..ef20605a172 100644 --- a/libgo/go/encoding/binary/binary_test.go +++ b/libgo/go/encoding/binary/binary_test.go @@ -5,10 +5,10 @@ package binary import ( - "io" - "os" "bytes" + "io" "math" + "os" "reflect" "testing" ) @@ -99,7 +99,7 @@ var little = []byte{ var src = []byte{1, 2, 3, 4, 5, 6, 7, 8} var res = []int32{0x01020304, 0x05060708} -func checkResult(t *testing.T, dir string, order, err os.Error, have, want interface{}) { +func checkResult(t *testing.T, dir string, order ByteOrder, err os.Error, have, want interface{}) { if err != nil { t.Errorf("%v %v: %v", dir, order, err) return |

