Skip few long running tests in `-short` mode

pull/274/head
wpedrak 2021-04-23 13:10:08 +02:00
parent 116fbcd490
commit c69165412d
3 changed files with 12 additions and 0 deletions

View File

@ -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()

View File

@ -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

View File

@ -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)
}