mirror of https://github.com/etcd-io/bbolt.git
skip concurrent read and write tests in short mode
Signed-off-by: Cenk Alti <cenkalti@gmail.com>pull/466/head
parent
4ad7b144f3
commit
651c74ab07
|
@ -48,6 +48,9 @@ TestConcurrentReadAndWrite verifies:
|
|||
following reading transactions (with txid >= previous writing txid).
|
||||
*/
|
||||
func TestConcurrentReadAndWrite(t *testing.T) {
|
||||
if testing.Short() {
|
||||
t.Skip("skipping test in short mode.")
|
||||
}
|
||||
bucket := []byte("data")
|
||||
keys := []string{"key0", "key1", "key2", "key3", "key4", "key5", "key6", "key7", "key8", "key9"}
|
||||
|
||||
|
|
Loading…
Reference in New Issue