diff options
author | Felix Lange <fjl@twurst.com> | 2015-07-18 22:50:26 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-07-18 22:50:26 +0800 |
commit | 637236cbcd3661a7e16746152a1899ef611fd740 (patch) | |
tree | 0796beed5cfe304b520845047acdea81c605f43d /RLPTests/rlptest.json | |
parent | 75b52ae0d97e7f2e9afc8f7a178a4448407d5f3c (diff) | |
download | dexon-tests-637236cbcd3661a7e16746152a1899ef611fd740.tar dexon-tests-637236cbcd3661a7e16746152a1899ef611fd740.tar.gz dexon-tests-637236cbcd3661a7e16746152a1899ef611fd740.tar.bz2 dexon-tests-637236cbcd3661a7e16746152a1899ef611fd740.tar.lz dexon-tests-637236cbcd3661a7e16746152a1899ef611fd740.tar.xz dexon-tests-637236cbcd3661a7e16746152a1899ef611fd740.tar.zst dexon-tests-637236cbcd3661a7e16746152a1899ef611fd740.zip |
RLPTests: add more byte array tests
Diffstat (limited to 'RLPTests/rlptest.json')
-rw-r--r-- | RLPTests/rlptest.json | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/RLPTests/rlptest.json b/RLPTests/rlptest.json index cde3cb3af..f59590567 100644 --- a/RLPTests/rlptest.json +++ b/RLPTests/rlptest.json @@ -3,18 +3,22 @@ "in": "", "out": "80" }, - "zerobytestring": { + "bytestring00": { "in": "\u0000", "out": "00" }, - "onebytestring": { + "bytestring01": { "in": "\u0001", "out": "01" }, + "bytestring7F": { + "in": "\u007F", + "out": "7F" + }, "shortstring": { "in": "dog", "out": "83646f67" - }, + }, "shortstring2": { "in": "Lorem ipsum dolor sit amet, consectetur adipisicing eli", "out": "b74c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e7365637465747572206164697069736963696e6720656c69" |