2023-05-02 14:19:22 +00:00
|
|
|
//go:build spectest
|
|
|
|
|
|
|
|
// once all tests are implemented, we can allow this test in the ci build path
|
|
|
|
|
2023-05-13 21:44:07 +00:00
|
|
|
package spectest
|
2023-05-02 14:19:22 +00:00
|
|
|
|
|
|
|
import (
|
2023-06-11 21:50:02 +00:00
|
|
|
"github.com/ledgerwatch/erigon/cl/transition"
|
2023-05-02 14:19:22 +00:00
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
2023-06-02 03:35:26 +00:00
|
|
|
"github.com/ledgerwatch/erigon/cl/spectest/consensus_tests"
|
|
|
|
|
2023-05-13 21:44:07 +00:00
|
|
|
"github.com/ledgerwatch/erigon/spectest"
|
2023-05-02 14:19:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func Test(t *testing.T) {
|
2023-06-11 21:50:02 +00:00
|
|
|
spectest.RunCases(t, consensus_tests.TestFormats, transition.ValidatingMachine, os.DirFS("./tests"))
|
2023-05-02 14:19:22 +00:00
|
|
|
}
|