diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-06-11 04:10:33 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-06-19 04:20:44 +0800 |
commit | c5d6fcbaba545d1078f5411dc67208d5d388222e (patch) | |
tree | 20d4e6592ba8411a0ab5980522029c4aac4a8244 /tests/vm_test.go | |
parent | 24554629b162d20a1f945386a45e3221c58adc2b (diff) | |
download | dexon-c5d6fcbaba545d1078f5411dc67208d5d388222e.tar.gz dexon-c5d6fcbaba545d1078f5411dc67208d5d388222e.tar.zst dexon-c5d6fcbaba545d1078f5411dc67208d5d388222e.zip |
Return error up stack instead of passing testing var down
Diffstat (limited to 'tests/vm_test.go')
-rw-r--r-- | tests/vm_test.go | 56 |
1 files changed, 42 insertions, 14 deletions
diff --git a/tests/vm_test.go b/tests/vm_test.go index faa3205bc..194e7b6fa 100644 --- a/tests/vm_test.go +++ b/tests/vm_test.go @@ -10,72 +10,100 @@ 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) { fn := filepath.Join(vmTestDir, "vmArithmeticTest.json") - RunVmTest(fn, t) + if err := RunVmTest(fn); err != nil { + t.Error(err) + } } func TestBitwiseLogicOperation(t *testing.T) { fn := filepath.Join(vmTestDir, "vmBitwiseLogicOperationTest.json") - RunVmTest(fn, t) + if err := RunVmTest(fn); err != nil { + t.Error(err) + } } func TestBlockInfo(t *testing.T) { fn := filepath.Join(vmTestDir, "vmBlockInfoTest.json") - RunVmTest(fn, t) + if err := RunVmTest(fn); err != nil { + t.Error(err) + } } func TestEnvironmentalInfo(t *testing.T) { fn := filepath.Join(vmTestDir, "vmEnvironmentalInfoTest.json") - RunVmTest(fn, t) + if err := RunVmTest(fn); err != nil { + t.Error(err) + } } func TestFlowOperation(t *testing.T) { fn := filepath.Join(vmTestDir, "vmIOandFlowOperationsTest.json") - RunVmTest(fn, t) + if err := RunVmTest(fn); err != nil { + t.Error(err) + } } func TestLogTest(t *testing.T) { fn := filepath.Join(vmTestDir, "vmLogTest.json") - RunVmTest(fn, t) + if err := RunVmTest(fn); err != nil { + t.Error(err) + } } func TestPerformance(t *testing.T) { fn := filepath.Join(vmTestDir, "vmPerformanceTest.json") - RunVmTest(fn, t) + if err := RunVmTest(fn); err != nil { + t.Error(err) + } } func TestPushDupSwap(t *testing.T) { fn := filepath.Join(vmTestDir, "vmPushDupSwapTest.json") - RunVmTest(fn, t) + if err := RunVmTest(fn); err != nil { + t.Error(err) + } } func TestVMSha3(t *testing.T) { fn := filepath.Join(vmTestDir, "vmSha3Test.json") - RunVmTest(fn, t) + if err := RunVmTest(fn); err != nil { + t.Error(err) + } } func TestVm(t *testing.T) { fn := filepath.Join(vmTestDir, "vmtests.json") - RunVmTest(fn, t) + if err := RunVmTest(fn); err != nil { + t.Error(err) + } } func TestVmLog(t *testing.T) { fn := filepath.Join(vmTestDir, "vmLogTest.json") - RunVmTest(fn, t) + if err := RunVmTest(fn); err != nil { + t.Error(err) + } } func TestInputLimits(t *testing.T) { fn := filepath.Join(vmTestDir, "vmInputLimits.json") - RunVmTest(fn, t) + if err := RunVmTest(fn); err != nil { + t.Error(err) + } } func TestInputLimitsLight(t *testing.T) { fn := filepath.Join(vmTestDir, "vmInputLimitsLight.json") - RunVmTest(fn, t) + if err := RunVmTest(fn); err != nil { + t.Error(err) + } } func TestVMRandom(t *testing.T) { fns, _ := filepath.Glob(filepath.Join(baseDir, "RandomTests", "*")) for _, fn := range fns { - RunVmTest(fn, t) + if err := RunVmTest(fn); err != nil { + t.Error(err) + } } } |