diff options
author | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-05-16 00:49:31 +0800 |
---|---|---|
committer | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-05-16 00:49:31 +0800 |
commit | 32276e8b01a16840df38aa4b703ab9b2be5b8c74 (patch) | |
tree | 48b080589ef8ff0e9ad172ed79ceb5b3ed04b32b /tests | |
parent | 830bdb1cfd781192f2ffd42e94650a7717ac748a (diff) | |
download | dexon-32276e8b01a16840df38aa4b703ab9b2be5b8c74.tar.gz dexon-32276e8b01a16840df38aa4b703ab9b2be5b8c74.tar.zst dexon-32276e8b01a16840df38aa4b703ab9b2be5b8c74.zip |
Update StateTests and nil create return on failed code deposit
Diffstat (limited to 'tests')
-rw-r--r-- | tests/vm/gh_test.go | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/tests/vm/gh_test.go b/tests/vm/gh_test.go index 612537ddf..2f0d058e3 100644 --- a/tests/vm/gh_test.go +++ b/tests/vm/gh_test.go @@ -269,8 +269,13 @@ func TestVmLog(t *testing.T) { RunVmTest(fn, t) } -func TestInputLimits1(t *testing.T) { - const fn = "../files/VMTests/vmInputLimits1.json" +func TestInputLimits(t *testing.T) { + const fn = "../files/VMTests/vmInputLimits.json" + RunVmTest(fn, t) +} + +func TestInputLimitsLight(t *testing.T) { + const fn = "../files/VMTests/vmInputLimitsLight.json" RunVmTest(fn, t) } @@ -350,3 +355,8 @@ func TestSolidity(t *testing.T) { const fn = "../files/StateTests/stSolidityTest.json" RunVmTest(fn, t) } + +func TestWallet(t *testing.T) { + const fn = "../files/StateTests/stWalletTest.json" + RunVmTest(fn, t) +} |