aboutsummaryrefslogtreecommitdiffstats
path: root/rlp_test.go
diff options
context:
space:
mode:
authorobscuren <obscuren@obscura.com>2013-12-28 09:24:01 +0800
committerobscuren <obscuren@obscura.com>2013-12-28 09:24:01 +0800
commit5a7eae705b83d75cb780279e386f183c4b6e19c6 (patch)
tree132efdfe17e3af1faa628a84768d3e635d40f355 /rlp_test.go
parentd6460f3de171f018860ea9c3f4a69536c8ef82ac (diff)
downloadgo-tangerine-5a7eae705b83d75cb780279e386f183c4b6e19c6.tar.gz
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.go8
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)
+ }
+}