aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-11-05 01:18:57 +0800
committerobscuren <geffobscura@gmail.com>2014-11-05 01:18:57 +0800
commit1b1fa049fa483b3996d3582ad247638045657282 (patch)
tree3a43f6baa5e990410c60df46fcfe5cbcb2e7c894 /tests
parent8cfbf1836d68c49242703e3f59e4d0a06754c02b (diff)
downloadgo-tangerine-1b1fa049fa483b3996d3582ad247638045657282.tar
go-tangerine-1b1fa049fa483b3996d3582ad247638045657282.tar.gz
go-tangerine-1b1fa049fa483b3996d3582ad247638045657282.tar.bz2
go-tangerine-1b1fa049fa483b3996d3582ad247638045657282.tar.lz
go-tangerine-1b1fa049fa483b3996d3582ad247638045657282.tar.xz
go-tangerine-1b1fa049fa483b3996d3582ad247638045657282.tar.zst
go-tangerine-1b1fa049fa483b3996d3582ad247638045657282.zip
Fixed VM and added static analysis for EVM jumps
Diffstat (limited to 'tests')
-rw-r--r--tests/vm/gh_test.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/vm/gh_test.go b/tests/vm/gh_test.go
index da9de6db5..1978de412 100644
--- a/tests/vm/gh_test.go
+++ b/tests/vm/gh_test.go
@@ -88,11 +88,14 @@ func TestVMArithmetic(t *testing.T) {
RunVmTest(fn, t)
}
+/*
+deleted?
func TestVMSystemOperation(t *testing.T) {
- //helper.Logger.SetLogLevel(5)
+ helper.Logger.SetLogLevel(5)
const fn = "../files/vmtests/vmSystemOperationsTest.json"
RunVmTest(fn, t)
}
+*/
func TestBitwiseLogicOperation(t *testing.T) {
const fn = "../files/vmtests/vmBitwiseLogicOperationTest.json"
@@ -110,6 +113,7 @@ func TestEnvironmentalInfo(t *testing.T) {
}
func TestFlowOperation(t *testing.T) {
+ // helper.Logger.SetLogLevel(5)
const fn = "../files/vmtests/vmIOandFlowOperationsTest.json"
RunVmTest(fn, t)
}