diff options
author | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-07-03 15:40:07 +0800 |
---|---|---|
committer | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-07-03 15:40:07 +0800 |
commit | ff97059a992935d20106af69430f0fdd6376817a (patch) | |
tree | 024d5efabcc86cbd4c9073ace67bea4a3d318801 /tests/files/BasicTests | |
parent | acd85fe95f025384885ed09560e32b227d80b26f (diff) | |
download | dexon-ff97059a992935d20106af69430f0fdd6376817a.tar.gz dexon-ff97059a992935d20106af69430f0fdd6376817a.tar.zst dexon-ff97059a992935d20106af69430f0fdd6376817a.zip |
Update Ethereum JSON tests, skip failing
Diffstat (limited to 'tests/files/BasicTests')
-rw-r--r-- | tests/files/BasicTests/RandomRLPTests/example.json | 6 | ||||
-rw-r--r-- | tests/files/BasicTests/invalidRLPtest.json | 11 |
2 files changed, 17 insertions, 0 deletions
diff --git a/tests/files/BasicTests/RandomRLPTests/example.json b/tests/files/BasicTests/RandomRLPTests/example.json new file mode 100644 index 000000000..bd1375332 --- /dev/null +++ b/tests/files/BasicTests/RandomRLPTests/example.json @@ -0,0 +1,6 @@ +{ + "listsoflists2": { + "in": [ [], [[]], [ [], [[]] ] ], + "out": "c7c0c1c0c3c0c1c0" + }, +} diff --git a/tests/files/BasicTests/invalidRLPtest.json b/tests/files/BasicTests/invalidRLPtest.json new file mode 100644 index 000000000..f2acd371d --- /dev/null +++ b/tests/files/BasicTests/invalidRLPtest.json @@ -0,0 +1,11 @@ +{ + "int32Overflow": { + "in": "INVALID", + "out": "bf0f000000000000021111" + }, + + "int32Overflow2": { + "in": "INVALID", + "out": "ff0f000000000000021111" + }, +} |