diff options
author | obscuren <geffobscura@gmail.com> | 2015-05-19 23:26:38 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-05-20 06:21:23 +0800 |
commit | f5af1fdca8dc7d44b4c2025195c19819886729b6 (patch) | |
tree | 2e8749dd034b7b09655001894e6e9bd755d1b49e /tests | |
parent | 648b352424e70f099f62cc18a768babb90434350 (diff) | |
download | dexon-f5af1fdca8dc7d44b4c2025195c19819886729b6.tar.gz dexon-f5af1fdca8dc7d44b4c2025195c19819886729b6.tar.zst dexon-f5af1fdca8dc7d44b4c2025195c19819886729b6.zip |
core/vm: RETURN op code returns pointer to memory rather than copy
Diffstat (limited to 'tests')
-rw-r--r-- | tests/vm/gh_test.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/vm/gh_test.go b/tests/vm/gh_test.go index b01448420..827d8ec8b 100644 --- a/tests/vm/gh_test.go +++ b/tests/vm/gh_test.go @@ -286,13 +286,13 @@ func TestInputLimitsLight(t *testing.T) { RunVmTest(fn, t) } -func TestStateExample(t *testing.T) { - const fn = "../files/StateTests/stExample.json" +func TestStateSystemOperations(t *testing.T) { + const fn = "../files/StateTests/stSystemOperationsTest.json" RunVmTest(fn, t) } -func TestStateSystemOperations(t *testing.T) { - const fn = "../files/StateTests/stSystemOperationsTest.json" +func TestStateExample(t *testing.T) { + const fn = "../files/StateTests/stExample.json" RunVmTest(fn, t) } |