diff options
author | Gav Wood <i@gavwood.com> | 2014-02-22 02:33:39 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-02-22 02:33:39 +0800 |
commit | 6ad14c1a157e707fd15c87816e8ad872f69790db (patch) | |
tree | 301c570686e8367bfcaae2277919a65df0f520f3 /rlptest.json | |
parent | f91ad7b3857ec9157e7df7f315d942afb7594da0 (diff) | |
download | go-tangerine-6ad14c1a157e707fd15c87816e8ad872f69790db.tar go-tangerine-6ad14c1a157e707fd15c87816e8ad872f69790db.tar.gz go-tangerine-6ad14c1a157e707fd15c87816e8ad872f69790db.tar.bz2 go-tangerine-6ad14c1a157e707fd15c87816e8ad872f69790db.tar.lz go-tangerine-6ad14c1a157e707fd15c87816e8ad872f69790db.tar.xz go-tangerine-6ad14c1a157e707fd15c87816e8ad872f69790db.tar.zst go-tangerine-6ad14c1a157e707fd15c87816e8ad872f69790db.zip |
Added VM test suite.
Added TODO.
Renamed old files.
Diffstat (limited to 'rlptest.json')
-rw-r--r-- | rlptest.json | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/rlptest.json b/rlptest.json new file mode 100644 index 000000000..b443d65a4 --- /dev/null +++ b/rlptest.json @@ -0,0 +1,54 @@ +[ + [ + "cat", + "43636174" + ], + [ + "dog", + "43646f67" + ], + [ + [ "cat", "dog" ], + "824363617443646f67" + ], + [ + [ "dog", "god", "cat" ], + "8343646f6743676f6443636174" + ], + [ + 1, + "01" + ], + [ + 10, + "0a" + ], + [ + 100, + "1864" + ], + [ + 1000, + "1903e8" + ], + [ + 115792089237316195423570985008687907853269984665640564039457584007913129639935, + "37ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ], + [ + 115792089237316195423570985008687907853269984665640564039457584007913129639936, + "3821010000000000000000000000000000000000000000000000000000000000000000" + ], + [ + [ 1, 2, [] ], + "83010280" + ], + [ + [ [ [], [] ], [] ], + "8282808080" + ], + [ + [ "zw", [ 4 ], "wz" ], + "83427a77810442777a" + ] +] |