diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-23 04:47:36 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-23 04:47:36 +0800 |
commit | a2162258274511b13ecf002e7ec6b82f8508d7e7 (patch) | |
tree | 63bc9fbd30bbf5f0a20bc10df5ce30e9f11ab417 /tests | |
parent | 0dfe5113709d2981ef2ec8885d831a38cf2e4f91 (diff) | |
parent | d5f38f5690caeb30794e62d4a1b2683a6107cfbc (diff) | |
download | dexon-a2162258274511b13ecf002e7ec6b82f8508d7e7.tar dexon-a2162258274511b13ecf002e7ec6b82f8508d7e7.tar.gz dexon-a2162258274511b13ecf002e7ec6b82f8508d7e7.tar.bz2 dexon-a2162258274511b13ecf002e7ec6b82f8508d7e7.tar.lz dexon-a2162258274511b13ecf002e7ec6b82f8508d7e7.tar.xz dexon-a2162258274511b13ecf002e7ec6b82f8508d7e7.tar.zst dexon-a2162258274511b13ecf002e7ec6b82f8508d7e7.zip |
Merge branch 'pr/evmjit' of https://github.com/chfast/go-ethereum into chfast-pr/evmjit
Diffstat (limited to 'tests')
-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 e1fdcd658..41ebba957 100644 --- a/tests/vm/gh_test.go +++ b/tests/vm/gh_test.go @@ -172,47 +172,47 @@ 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) { - const fn = "../files/vmtests/vmArithmeticTest.json" + const fn = "../files/VMTests/vmArithmeticTest.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) } func TestVmLog(t *testing.T) { - const fn = "../files/vmtests/vmLogTest.json" + const fn = "../files/VMTests/vmLogTest.json" RunVmTest(fn, t) } |