2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2015-04-20 16:14:57 +00:00
|
|
|
package tests
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2017-07-11 11:49:14 +00:00
|
|
|
)
|
2016-10-05 21:55:47 +00:00
|
|
|
|
2017-07-11 11:49:14 +00:00
|
|
|
func TestBlockchain(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
bt := new(testMatcher)
|
|
|
|
// General state tests are 'exported' as blockchain tests, but we can run them natively.
|
|
|
|
bt.skipLoad(`^GeneralStateTests/`)
|
|
|
|
// Skip random failures due to selfish mining test.
|
2017-08-10 09:38:17 +00:00
|
|
|
bt.skipLoad(`^bcForgedTest/bcForkUncle\.json`)
|
|
|
|
bt.skipLoad(`^bcMultiChainTest/(ChainAtoChainB_blockorder|CallContractFromNotBestBlock)`)
|
|
|
|
bt.skipLoad(`^bcTotalDifficultyTest/(lotsOfLeafs|lotsOfBranches|sideChainWithMoreTransactions)`)
|
2018-09-04 08:49:18 +00:00
|
|
|
// This test is broken
|
|
|
|
bt.fails(`blockhashNonConstArg_Constantinople`, "Broken test")
|
2017-08-22 15:30:46 +00:00
|
|
|
|
|
|
|
// Still failing tests
|
2018-09-04 08:49:18 +00:00
|
|
|
// bt.skipLoad(`^bcWalletTest.*_Byzantium$`)
|
2017-07-11 11:49:14 +00:00
|
|
|
|
|
|
|
bt.walk(t, blockTestDir, func(t *testing.T, name string, test *BlockTest) {
|
2017-08-10 09:38:17 +00:00
|
|
|
if err := bt.checkFailure(t, name, test.Run()); err != nil {
|
2017-07-11 11:49:14 +00:00
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
})
|
2016-10-05 21:55:47 +00:00
|
|
|
}
|