More consistent test interfaces + test skipping
This commit is contained in:
@@ -6,40 +6,21 @@ import (
|
||||
)
|
||||
|
||||
func TestTransactions(t *testing.T) {
|
||||
notWorking := make(map[string]bool, 100)
|
||||
|
||||
// TODO: all these tests should work! remove them from the array when they work
|
||||
snafus := []string{
|
||||
"TransactionWithHihghNonce256", // fails due to testing upper bound of 256 bit nonce
|
||||
}
|
||||
|
||||
for _, name := range snafus {
|
||||
notWorking[name] = true
|
||||
}
|
||||
|
||||
var err error
|
||||
err = RunTransactionTests(filepath.Join(transactionTestDir, "ttTransactionTest.json"),
|
||||
notWorking)
|
||||
err := RunTransactionTests(filepath.Join(transactionTestDir, "ttTransactionTest.json"))
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
}
|
||||
|
||||
func TestWrongRLPTransactions(t *testing.T) {
|
||||
notWorking := make(map[string]bool, 100)
|
||||
var err error
|
||||
err = RunTransactionTests(filepath.Join(transactionTestDir, "ttWrongRLPTransaction.json"),
|
||||
notWorking)
|
||||
err := RunTransactionTests(filepath.Join(transactionTestDir, "ttWrongRLPTransaction.json"))
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
}
|
||||
|
||||
func Test10MBtx(t *testing.T) {
|
||||
notWorking := make(map[string]bool, 100)
|
||||
var err error
|
||||
err = RunTransactionTests(filepath.Join(transactionTestDir, "tt10mbDataField.json"),
|
||||
notWorking)
|
||||
err := RunTransactionTests(filepath.Join(transactionTestDir, "tt10mbDataField.json"))
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
Reference in New Issue
Block a user