aboutsummaryrefslogtreecommitdiff
path: root/src/math/big/ratmarsh_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/big/ratmarsh_test.go')
-rw-r--r--src/math/big/ratmarsh_test.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/math/big/ratmarsh_test.go b/src/math/big/ratmarsh_test.go
index 351d109f8d8..55a9878bb87 100644
--- a/src/math/big/ratmarsh_test.go
+++ b/src/math/big/ratmarsh_test.go
@@ -123,3 +123,15 @@ func TestRatXMLEncoding(t *testing.T) {
}
}
}
+
+func TestRatGobDecodeShortBuffer(t *testing.T) {
+ for _, tc := range [][]byte{
+ []byte{0x2},
+ []byte{0x2, 0x0, 0x0, 0x0, 0xff},
+ } {
+ err := NewRat(1, 2).GobDecode(tc)
+ if err == nil {
+ t.Error("expected GobDecode to return error for malformed input")
+ }
+ }
+}