[release/1.3.4] tests: updated homestead tests

This commit is contained in:
Jeffrey Wilcke
2016-01-19 23:48:50 +01:00
parent 61404979ed
commit 7bb496f737
800 changed files with 182248 additions and 11710 deletions

View File

@ -35,9 +35,31 @@ func TestWrongRLPTransactions(t *testing.T) {
}
}
func Test10MBtx(t *testing.T) {
func Test10MBTransactions(t *testing.T) {
err := RunTransactionTests(filepath.Join(transactionTestDir, "tt10mbDataField.json"), TransSkipTests)
if err != nil {
t.Fatal(err)
}
}
// homestead tests
func TestHomesteadTransactions(t *testing.T) {
err := RunTransactionTests(filepath.Join(transactionTestDir, "Homestead", "ttTransactionTest.json"), TransSkipTests)
if err != nil {
t.Fatal(err)
}
}
func TestHomesteadWrongRLPTransactions(t *testing.T) {
err := RunTransactionTests(filepath.Join(transactionTestDir, "Homestead", "ttWrongRLPTransaction.json"), TransSkipTests)
if err != nil {
t.Fatal(err)
}
}
func TestHomestead10MBTransactions(t *testing.T) {
err := RunTransactionTests(filepath.Join(transactionTestDir, "Homestead", "tt10mbDataField.json"), TransSkipTests)
if err != nil {
t.Fatal(err)
}
}