diff options
author | obscuren <geffobscura@gmail.com> | 2014-10-19 05:31:10 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-10-19 05:31:10 +0800 |
commit | 33ca8d7b8f3d4db4b01890e39fa806766fbe8f84 (patch) | |
tree | 13fddb14b28e5cf5fe89a16721f22a1eeb850658 /tests/vm/gh_test.go | |
parent | 3ad1daa70d09e0fc32347029b98166a51e9078c4 (diff) | |
download | dexon-33ca8d7b8f3d4db4b01890e39fa806766fbe8f84.tar dexon-33ca8d7b8f3d4db4b01890e39fa806766fbe8f84.tar.gz dexon-33ca8d7b8f3d4db4b01890e39fa806766fbe8f84.tar.bz2 dexon-33ca8d7b8f3d4db4b01890e39fa806766fbe8f84.tar.lz dexon-33ca8d7b8f3d4db4b01890e39fa806766fbe8f84.tar.xz dexon-33ca8d7b8f3d4db4b01890e39fa806766fbe8f84.tar.zst dexon-33ca8d7b8f3d4db4b01890e39fa806766fbe8f84.zip |
moved
Diffstat (limited to 'tests/vm/gh_test.go')
-rw-r--r-- | tests/vm/gh_test.go | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/vm/gh_test.go b/tests/vm/gh_test.go index 1e247c3a8..466fae9c7 100644 --- a/tests/vm/gh_test.go +++ b/tests/vm/gh_test.go @@ -89,46 +89,46 @@ func RunVmTest(p string, t *testing.T) { // I've created a new function for each tests so it's easier to identify where the problem lies if any of them fail. func TestVMArithmetic(t *testing.T) { //helper.Logger.SetLogLevel(5) - const fn = "files/vmtests/vmArithmeticTest.json" + const fn = "../files/vmtests/vmArithmeticTest.json" RunVmTest(fn, t) } func TestVMSystemOperation(t *testing.T) { - const fn = "files/vmtests/vmSystemOperationsTest.json" + const fn = "../files/vmtests/vmSystemOperationsTest.json" RunVmTest(fn, t) } func TestBitwiseLogicOperation(t *testing.T) { - const fn = "files/vmtests/vmBitwiseLogicOperationTest.json" + const fn = "../files/vmtests/vmBitwiseLogicOperationTest.json" RunVmTest(fn, t) } func TestBlockInfo(t *testing.T) { - const fn = "files/vmtests/vmBlockInfoTest.json" + const fn = "../files/vmtests/vmBlockInfoTest.json" RunVmTest(fn, t) } func TestEnvironmentalInfo(t *testing.T) { - const fn = "files/vmtests/vmEnvironmentalInfoTest.json" + const fn = "../files/vmtests/vmEnvironmentalInfoTest.json" RunVmTest(fn, t) } func TestFlowOperation(t *testing.T) { - const fn = "files/vmtests/vmIOandFlowOperationsTest.json" + const fn = "../files/vmtests/vmIOandFlowOperationsTest.json" RunVmTest(fn, t) } func TestPushDupSwap(t *testing.T) { - const fn = "files/vmtests/vmPushDupSwapTest.json" + const fn = "../files/vmtests/vmPushDupSwapTest.json" RunVmTest(fn, t) } func TestVMSha3(t *testing.T) { - const fn = "files/vmtests/vmSha3Test.json" + const fn = "../files/vmtests/vmSha3Test.json" RunVmTest(fn, t) } func TestVm(t *testing.T) { - const fn = "files/vmtests/vmtests.json" + const fn = "../files/vmtests/vmtests.json" RunVmTest(fn, t) } |