From ee294c24ed26a7efb6688ed165328b7da68aee0d Mon Sep 17 00:00:00 2001 From: Maysam Yabandeh Date: Mon, 17 Jun 2019 11:07:27 -0700 Subject: [PATCH] Make db_bloom_filter_test parallel (#5467) Summary: When run under TSAN it sometimes goes over 10m and times out. The slowest ones are `DBBloomFilterTestWithParam.BloomFilter` which we have 6 of them. Making the tests run in parallel should take care of the timeout issue. Pull Request resolved: https://github.com/facebook/rocksdb/pull/5467 Differential Revision: D15856912 Pulled By: maysamyabandeh fbshipit-source-id: 26c43c55312974c1b809c070342dee037d0219f4 --- TARGETS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TARGETS b/TARGETS index 7a8bb0005..45a99a55d 100644 --- a/TARGETS +++ b/TARGETS @@ -539,7 +539,7 @@ ROCKS_TESTS = [ [ "db_bloom_filter_test", "db/db_bloom_filter_test.cc", - "serial", + "parallel", ], [ "db_compaction_filter_test",