mirror of https://github.com/etcd-io/bbolt.git
Skip few long running tests in `-short` mode
parent
116fbcd490
commit
c69165412d
|
@ -1185,6 +1185,10 @@ func TestBucket_Put_ValueTooLarge(t *testing.T) {
|
|||
|
||||
// Ensure a bucket can calculate stats.
|
||||
func TestBucket_Stats(t *testing.T) {
|
||||
if testing.Short() {
|
||||
t.Skip("skipping test in short mode")
|
||||
}
|
||||
|
||||
db := MustOpenDB()
|
||||
defer db.MustClose()
|
||||
|
||||
|
|
|
@ -66,6 +66,10 @@ func TestOpen(t *testing.T) {
|
|||
// Regression validation for https://github.com/etcd-io/bbolt/pull/122.
|
||||
// Tests multiple goroutines simultaneously opening a database.
|
||||
func TestOpen_MultipleGoroutines(t *testing.T) {
|
||||
if testing.Short() {
|
||||
t.Skip("skipping test in short mode")
|
||||
}
|
||||
|
||||
const (
|
||||
instances = 30
|
||||
iterations = 30
|
||||
|
|
|
@ -61,6 +61,10 @@ func createAndPutKeys(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestManyDBs(t *testing.T) {
|
||||
if testing.Short() {
|
||||
t.Skip("skipping test in short mode")
|
||||
}
|
||||
|
||||
for i := 0; i < 100; i++ {
|
||||
t.Run(fmt.Sprintf("%d", i), createAndPutKeys)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue