| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // Copyright 2015 The go-ethereum Authors | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // This file is part of the go-ethereum library. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2015-07-23 18:35:11 +02:00
										 |  |  | // The go-ethereum library is free software: you can redistribute it and/or modify | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02: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 18:48:40 +02:00
										 |  |  | // The go-ethereum library is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02: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 18:48:40 +02:00
										 |  |  | // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-20 18:14:57 +02:00
										 |  |  | package tests | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"testing" | 
					
						
							| 
									
										
										
										
											2017-07-11 13:49:14 +02:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-11 13:49:14 +02: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 11:38:17 +02:00
										 |  |  | 	bt.skipLoad(`^bcForgedTest/bcForkUncle\.json`) | 
					
						
							|  |  |  | 	bt.skipLoad(`^bcMultiChainTest/(ChainAtoChainB_blockorder|CallContractFromNotBestBlock)`) | 
					
						
							|  |  |  | 	bt.skipLoad(`^bcTotalDifficultyTest/(lotsOfLeafs|lotsOfBranches|sideChainWithMoreTransactions)`) | 
					
						
							|  |  |  | 	// Constantinople is not implemented yet. | 
					
						
							|  |  |  | 	bt.skipLoad(`(?i)(constantinople)`) | 
					
						
							| 
									
										
										
										
											2017-08-22 18:30:46 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Still failing tests | 
					
						
							|  |  |  | 	bt.skipLoad(`^bcWalletTest.*_Byzantium$`) | 
					
						
							| 
									
										
										
										
											2017-07-11 13:49:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bt.walk(t, blockTestDir, func(t *testing.T, name string, test *BlockTest) { | 
					
						
							| 
									
										
										
										
											2017-08-10 11:38:17 +02:00
										 |  |  | 		if err := bt.checkFailure(t, name, test.Run()); err != nil { | 
					
						
							| 
									
										
										
										
											2017-07-11 13:49:14 +02:00
										 |  |  | 			t.Error(err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}) | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | } |