diff options
author | obscuren <obscuren@obscura.com> | 2013-12-28 09:24:01 +0800 |
---|---|---|
committer | obscuren <obscuren@obscura.com> | 2013-12-28 09:24:01 +0800 |
commit | 5a7eae705b83d75cb780279e386f183c4b6e19c6 (patch) | |
tree | 132efdfe17e3af1faa628a84768d3e635d40f355 /rlp_test.go | |
parent | d6460f3de171f018860ea9c3f4a69536c8ef82ac (diff) | |
download | go-tangerine-5a7eae705b83d75cb780279e386f183c4b6e19c6.tar go-tangerine-5a7eae705b83d75cb780279e386f183c4b6e19c6.tar.gz go-tangerine-5a7eae705b83d75cb780279e386f183c4b6e19c6.tar.bz2 go-tangerine-5a7eae705b83d75cb780279e386f183c4b6e19c6.tar.lz go-tangerine-5a7eae705b83d75cb780279e386f183c4b6e19c6.tar.xz go-tangerine-5a7eae705b83d75cb780279e386f183c4b6e19c6.tar.zst go-tangerine-5a7eae705b83d75cb780279e386f183c4b6e19c6.zip |
Removed slice appending for integers
Diffstat (limited to 'rlp_test.go')
-rw-r--r-- | rlp_test.go | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/rlp_test.go b/rlp_test.go index c2d5ba263..ae8dcced4 100644 --- a/rlp_test.go +++ b/rlp_test.go @@ -15,7 +15,6 @@ func TestEncode(t *testing.T) { dec,_ := Decode(bytes, 0) fmt.Printf("raw: %v encoded: %q == %v\n", dec, str, "dog") - sliceRes := "\x83CdogCgodCcat" strs := []string{"dog", "god", "cat"} bytes = Encode(strs) @@ -27,3 +26,10 @@ func TestEncode(t *testing.T) { dec,_ = Decode(bytes, 0) fmt.Printf("raw: %v encoded: %q == %v\n", dec, slice, strs) } + +func BenchmarkEncodeDecode(b *testing.B) { + for i := 0; i < b.N; i++ { + bytes := Encode([]string{"dog", "god", "cat"}) + Decode(bytes, 0) + } +} |