aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-05-19 23:26:38 +0800
committerobscuren <geffobscura@gmail.com>2015-05-20 06:21:23 +0800
commitf5af1fdca8dc7d44b4c2025195c19819886729b6 (patch)
tree2e8749dd034b7b09655001894e6e9bd755d1b49e /tests
parent648b352424e70f099f62cc18a768babb90434350 (diff)
downloadgo-tangerine-f5af1fdca8dc7d44b4c2025195c19819886729b6.tar
go-tangerine-f5af1fdca8dc7d44b4c2025195c19819886729b6.tar.gz
go-tangerine-f5af1fdca8dc7d44b4c2025195c19819886729b6.tar.bz2
go-tangerine-f5af1fdca8dc7d44b4c2025195c19819886729b6.tar.lz
go-tangerine-f5af1fdca8dc7d44b4c2025195c19819886729b6.tar.xz
go-tangerine-f5af1fdca8dc7d44b4c2025195c19819886729b6.tar.zst
go-tangerine-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.go8
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)
}