mirror of
https://github.com/etcd-io/bbolt.git
synced 2025-05-16 12:30:27 +00:00
Add `Robustness Test` pipeline for robustness test cases. Signed-off-by: Wei Fu <fuweid89@gmail.com>
18 lines
208 B
Go
18 lines
208 B
Go
//go:build linux
|
|
|
|
package robustness
|
|
|
|
import (
|
|
"flag"
|
|
"os"
|
|
"testing"
|
|
|
|
testutils "go.etcd.io/bbolt/tests/utils"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
flag.Parse()
|
|
testutils.RequiresRoot()
|
|
os.Exit(m.Run())
|
|
}
|