aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-01-27 23:31:29 +0800
committerobscuren <geffobscura@gmail.com>2015-01-27 23:31:29 +0800
commit8c99a87aa842e8b6cf44281dad1ca10371f109dd (patch)
tree93b3825d1c34d0c39ba92ed991921457898cac7d /tests
parent48083608b513d97d9db10bbfdabb6e5f8830f08a (diff)
parentfe14b0b82e10ce92309e6af4b13c6eec20d8df87 (diff)
downloaddexon-8c99a87aa842e8b6cf44281dad1ca10371f109dd.tar
dexon-8c99a87aa842e8b6cf44281dad1ca10371f109dd.tar.gz
dexon-8c99a87aa842e8b6cf44281dad1ca10371f109dd.tar.bz2
dexon-8c99a87aa842e8b6cf44281dad1ca10371f109dd.tar.lz
dexon-8c99a87aa842e8b6cf44281dad1ca10371f109dd.tar.xz
dexon-8c99a87aa842e8b6cf44281dad1ca10371f109dd.tar.zst
dexon-8c99a87aa842e8b6cf44281dad1ca10371f109dd.zip
Merge branch 'chfast-pr/evmjit' into develop
Diffstat (limited to 'tests')
-rw-r--r--tests/vm/gh_test.go18
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)
}