aboutsummaryrefslogtreecommitdiffstats
path: root/tests/block_test.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-04-23 17:49:51 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-04-23 17:49:51 +0800
commit2fe54ab233c0cd1bf09b49085477c961dcc1980f (patch)
tree5e18ad0907320997a28c848a7740e680a5fa7fd6 /tests/block_test.go
parent0071fbed8c1525bedf43e3bbd444b11e64b87f27 (diff)
parent49da462e92fd597ba6242231b9dc0809e683862b (diff)
downloaddexon-2fe54ab233c0cd1bf09b49085477c961dcc1980f.tar
dexon-2fe54ab233c0cd1bf09b49085477c961dcc1980f.tar.gz
dexon-2fe54ab233c0cd1bf09b49085477c961dcc1980f.tar.bz2
dexon-2fe54ab233c0cd1bf09b49085477c961dcc1980f.tar.lz
dexon-2fe54ab233c0cd1bf09b49085477c961dcc1980f.tar.xz
dexon-2fe54ab233c0cd1bf09b49085477c961dcc1980f.tar.zst
dexon-2fe54ab233c0cd1bf09b49085477c961dcc1980f.zip
Merge pull request #779 from Gustav-Simonsson/block_tests_reloaded
Block tests reloaded
Diffstat (limited to 'tests/block_test.go')
-rw-r--r--tests/block_test.go14
1 files changed, 2 insertions, 12 deletions
diff --git a/tests/block_test.go b/tests/block_test.go
index bffaf50da..9343a3de9 100644
--- a/tests/block_test.go
+++ b/tests/block_test.go
@@ -29,22 +29,12 @@ func TestBcUncleHeaderValidityTests(t *testing.T) {
func TestBcInvalidHeaderTests(t *testing.T) {
t.Skip("Skipped in lieu of performance fixes.")
- snafus := []string{
- "wrongUncleHash", // TODO: why does this fail?
- }
- runBlockTestsInFile("files/BlockTests/bcInvalidHeaderTest.json", snafus, t)
+ runBlockTestsInFile("files/BlockTests/bcInvalidHeaderTest.json", []string{}, t)
}
func TestBcInvalidRLPTests(t *testing.T) {
t.Skip("Skipped in lieu of performance fixes.")
- snafus := []string{
- // TODO: why does these fail?
- "TRANSCT__ZeroByteAtTheEnd",
- "TRANSCT__RandomByteAtTheEnd",
- "BLOCK__ZeroByteAtTheEnd",
- "BLOCK__RandomByteAtTheEnd",
- }
- runBlockTestsInFile("files/BlockTests/bcInvalidRLPTest.json", snafus, t)
+ runBlockTestsInFile("files/BlockTests/bcInvalidRLPTest.json", []string{}, t)
}
func TestBcJSAPITests(t *testing.T) {