aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vm_test.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-06-11 00:34:38 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-06-19 04:13:42 +0800
commite82100367f794856a8807b5fcfe9f0043902a294 (patch)
treebd465d3867a3d411f005dd3fb9bb0c909921b043 /tests/vm_test.go
parenta67a15528aa5da902a17d49f5dad19db3975032a (diff)
downloadgo-tangerine-e82100367f794856a8807b5fcfe9f0043902a294.tar
go-tangerine-e82100367f794856a8807b5fcfe9f0043902a294.tar.gz
go-tangerine-e82100367f794856a8807b5fcfe9f0043902a294.tar.bz2
go-tangerine-e82100367f794856a8807b5fcfe9f0043902a294.tar.lz
go-tangerine-e82100367f794856a8807b5fcfe9f0043902a294.tar.xz
go-tangerine-e82100367f794856a8807b5fcfe9f0043902a294.tar.zst
go-tangerine-e82100367f794856a8807b5fcfe9f0043902a294.zip
Fix paths
Diffstat (limited to 'tests/vm_test.go')
-rw-r--r--tests/vm_test.go31
1 files changed, 17 insertions, 14 deletions
diff --git a/tests/vm_test.go b/tests/vm_test.go
index b42f83df8..faa3205bc 100644
--- a/tests/vm_test.go
+++ b/tests/vm_test.go
@@ -1,77 +1,80 @@
package tests
import (
+ "path/filepath"
"testing"
)
+var vmTestDir = filepath.Join(baseDir, "VMTests")
+
// 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"
+ fn := filepath.Join(vmTestDir, "vmArithmeticTest.json")
RunVmTest(fn, t)
}
func TestBitwiseLogicOperation(t *testing.T) {
- const fn = "../files/VMTests/vmBitwiseLogicOperationTest.json"
+ fn := filepath.Join(vmTestDir, "vmBitwiseLogicOperationTest.json")
RunVmTest(fn, t)
}
func TestBlockInfo(t *testing.T) {
- const fn = "../files/VMTests/vmBlockInfoTest.json"
+ fn := filepath.Join(vmTestDir, "vmBlockInfoTest.json")
RunVmTest(fn, t)
}
func TestEnvironmentalInfo(t *testing.T) {
- const fn = "../files/VMTests/vmEnvironmentalInfoTest.json"
+ fn := filepath.Join(vmTestDir, "vmEnvironmentalInfoTest.json")
RunVmTest(fn, t)
}
func TestFlowOperation(t *testing.T) {
- const fn = "../files/VMTests/vmIOandFlowOperationsTest.json"
+ fn := filepath.Join(vmTestDir, "vmIOandFlowOperationsTest.json")
RunVmTest(fn, t)
}
func TestLogTest(t *testing.T) {
- const fn = "../files/VMTests/vmLogTest.json"
+ fn := filepath.Join(vmTestDir, "vmLogTest.json")
RunVmTest(fn, t)
}
func TestPerformance(t *testing.T) {
- const fn = "../files/VMTests/vmPerformanceTest.json"
+ fn := filepath.Join(vmTestDir, "vmPerformanceTest.json")
RunVmTest(fn, t)
}
func TestPushDupSwap(t *testing.T) {
- const fn = "../files/VMTests/vmPushDupSwapTest.json"
+ fn := filepath.Join(vmTestDir, "vmPushDupSwapTest.json")
RunVmTest(fn, t)
}
func TestVMSha3(t *testing.T) {
- const fn = "../files/VMTests/vmSha3Test.json"
+ fn := filepath.Join(vmTestDir, "vmSha3Test.json")
RunVmTest(fn, t)
}
func TestVm(t *testing.T) {
- const fn = "../files/VMTests/vmtests.json"
+ fn := filepath.Join(vmTestDir, "vmtests.json")
RunVmTest(fn, t)
}
func TestVmLog(t *testing.T) {
- const fn = "../files/VMTests/vmLogTest.json"
+ fn := filepath.Join(vmTestDir, "vmLogTest.json")
RunVmTest(fn, t)
}
func TestInputLimits(t *testing.T) {
- const fn = "../files/VMTests/vmInputLimits.json"
+ fn := filepath.Join(vmTestDir, "vmInputLimits.json")
RunVmTest(fn, t)
}
func TestInputLimitsLight(t *testing.T) {
- const fn = "../files/VMTests/vmInputLimitsLight.json"
+ fn := filepath.Join(vmTestDir, "vmInputLimitsLight.json")
RunVmTest(fn, t)
}
func TestVMRandom(t *testing.T) {
- fns, _ := filepath.Glob("../files/VMTests/RandomTests/*")
+ fns, _ := filepath.Glob(filepath.Join(baseDir, "RandomTests", "*"))
for _, fn := range fns {
RunVmTest(fn, t)
}