diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-07-09 22:22:38 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-07-09 22:22:38 +0800 |
commit | dd140beb73bf70d1b7c78c5a92e5c73586282bb6 (patch) | |
tree | 5d0adbc2d526ee422f937c2dc253f3b064ebf465 /tests/block_test.go | |
parent | 06afabb63105cab5ab2360d6a84cbe398b25d8ca (diff) | |
parent | 5d6d40f329410f20d9ceb92d31985a883d94cb24 (diff) | |
download | dexon-dd140beb73bf70d1b7c78c5a92e5c73586282bb6.tar dexon-dd140beb73bf70d1b7c78c5a92e5c73586282bb6.tar.gz dexon-dd140beb73bf70d1b7c78c5a92e5c73586282bb6.tar.bz2 dexon-dd140beb73bf70d1b7c78c5a92e5c73586282bb6.tar.lz dexon-dd140beb73bf70d1b7c78c5a92e5c73586282bb6.tar.xz dexon-dd140beb73bf70d1b7c78c5a92e5c73586282bb6.tar.zst dexon-dd140beb73bf70d1b7c78c5a92e5c73586282bb6.zip |
Merge pull request #1443 from Gustav-Simonsson/core_uint64_ts
Core uint64 ts
Diffstat (limited to 'tests/block_test.go')
-rw-r--r-- | tests/block_test.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/block_test.go b/tests/block_test.go index 4b1b8bc37..43f72483e 100644 --- a/tests/block_test.go +++ b/tests/block_test.go @@ -94,3 +94,11 @@ func TestBcGasPricer(t *testing.T) { t.Fatal(err) } } + +// TODO: iterate over files once we got more than a few +func TestBcRandom(t *testing.T) { + err := RunBlockTest(filepath.Join(blockTestDir, "RandomTests/bl201507071825GO.json"), BlockSkipTests) + if err != nil { + t.Fatal(err) + } +} |