diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-06-20 20:32:33 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-06-20 20:32:33 +0800 |
commit | 9c69c051ba010e2323d665d2ef273773f9dd7aa3 (patch) | |
tree | e0d705729778ad60b70c6b3de9d0c3d22f9a0fa7 /tests/vm_test.go | |
parent | 53e042f0c47242afa3e13cfebb35becdacdc69c0 (diff) | |
parent | d1e589289c56140144241a245e1756dbdc7280a0 (diff) | |
download | go-tangerine-9c69c051ba010e2323d665d2ef273773f9dd7aa3.tar go-tangerine-9c69c051ba010e2323d665d2ef273773f9dd7aa3.tar.gz go-tangerine-9c69c051ba010e2323d665d2ef273773f9dd7aa3.tar.bz2 go-tangerine-9c69c051ba010e2323d665d2ef273773f9dd7aa3.tar.lz go-tangerine-9c69c051ba010e2323d665d2ef273773f9dd7aa3.tar.xz go-tangerine-9c69c051ba010e2323d665d2ef273773f9dd7aa3.tar.zst go-tangerine-9c69c051ba010e2323d665d2ef273773f9dd7aa3.zip |
Merge pull request #1236 from tgerring/ethtest
ethtest improvements
Diffstat (limited to 'tests/vm_test.go')
-rw-r--r-- | tests/vm_test.go | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/tests/vm_test.go b/tests/vm_test.go new file mode 100644 index 000000000..4e417da5a --- /dev/null +++ b/tests/vm_test.go @@ -0,0 +1,107 @@ +package tests + +import ( + "path/filepath" + "testing" +) + +// 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) { + fn := filepath.Join(vmTestDir, "vmArithmeticTest.json") + if err := RunVmTest(fn, VmSkipTests); err != nil { + t.Error(err) + } +} + +func TestBitwiseLogicOperation(t *testing.T) { + fn := filepath.Join(vmTestDir, "vmBitwiseLogicOperationTest.json") + if err := RunVmTest(fn, VmSkipTests); err != nil { + t.Error(err) + } +} + +func TestBlockInfo(t *testing.T) { + fn := filepath.Join(vmTestDir, "vmBlockInfoTest.json") + if err := RunVmTest(fn, VmSkipTests); err != nil { + t.Error(err) + } +} + +func TestEnvironmentalInfo(t *testing.T) { + fn := filepath.Join(vmTestDir, "vmEnvironmentalInfoTest.json") + if err := RunVmTest(fn, VmSkipTests); err != nil { + t.Error(err) + } +} + +func TestFlowOperation(t *testing.T) { + fn := filepath.Join(vmTestDir, "vmIOandFlowOperationsTest.json") + if err := RunVmTest(fn, VmSkipTests); err != nil { + t.Error(err) + } +} + +func TestLogTest(t *testing.T) { + fn := filepath.Join(vmTestDir, "vmLogTest.json") + if err := RunVmTest(fn, VmSkipTests); err != nil { + t.Error(err) + } +} + +func TestPerformance(t *testing.T) { + fn := filepath.Join(vmTestDir, "vmPerformanceTest.json") + if err := RunVmTest(fn, VmSkipTests); err != nil { + t.Error(err) + } +} + +func TestPushDupSwap(t *testing.T) { + fn := filepath.Join(vmTestDir, "vmPushDupSwapTest.json") + if err := RunVmTest(fn, VmSkipTests); err != nil { + t.Error(err) + } +} + +func TestVMSha3(t *testing.T) { + fn := filepath.Join(vmTestDir, "vmSha3Test.json") + if err := RunVmTest(fn, VmSkipTests); err != nil { + t.Error(err) + } +} + +func TestVm(t *testing.T) { + fn := filepath.Join(vmTestDir, "vmtests.json") + if err := RunVmTest(fn, VmSkipTests); err != nil { + t.Error(err) + } +} + +func TestVmLog(t *testing.T) { + fn := filepath.Join(vmTestDir, "vmLogTest.json") + if err := RunVmTest(fn, VmSkipTests); err != nil { + t.Error(err) + } +} + +func TestInputLimits(t *testing.T) { + fn := filepath.Join(vmTestDir, "vmInputLimits.json") + if err := RunVmTest(fn, VmSkipTests); err != nil { + t.Error(err) + } +} + +func TestInputLimitsLight(t *testing.T) { + fn := filepath.Join(vmTestDir, "vmInputLimitsLight.json") + if err := RunVmTest(fn, VmSkipTests); err != nil { + t.Error(err) + } +} + +func TestVMRandom(t *testing.T) { + fns, _ := filepath.Glob(filepath.Join(baseDir, "RandomTests", "*")) + for _, fn := range fns { + if err := RunVmTest(fn, VmSkipTests); err != nil { + t.Error(err) + } + } +} |