TARGETS 18.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
REPO_PATH = "internal_repo_rocksdb/repo/"
BUCK_BINS = "buck-out/gen/" + REPO_PATH
TEST_RUNNER = REPO_PATH + "buckifier/rocks_test_runner.sh"
rocksdb_compiler_flags = [
  "-msse",
  "-msse4.2",
  "-fno-builtin-memcmp",
  "-DROCKSDB_PLATFORM_POSIX",
  "-DROCKSDB_LIB_IO_POSIX",
  "-DROCKSDB_FALLOCATE_PRESENT",
  "-DROCKSDB_MALLOC_USABLE_SIZE",
  "-DOS_LINUX",
  # Flags to enable libs we include
  "-DSNAPPY",
  "-DZLIB",
  "-DBZIP2",
  "-DLZ4",
  "-DZSTD",
  "-DGFLAGS=gflags",
  "-DNUMA",
  "-DTBB",
  # Needed to compile in fbcode
  "-Wno-expansion-to-defined",
]

rocksdb_external_deps = [
  ('bzip2', None, 'bz2'),
  ('snappy', None, "snappy"),
  ('zlib', None, 'z'),
  ('gflags', None, 'gflags'),
  ('lz4', None, 'lz4'),
  ('zstd', None),
  ('tbb', None),
  ("numa", "2.0.8", "numa"),
  ("googletest", None, "gtest"),
]

rocksdb_preprocessor_flags = [
  # Directories with files for #include
  "-I" + REPO_PATH + "include/",
  "-I" + REPO_PATH,
]

cpp_library(
    name = "rocksdb_lib",
    headers = AutoHeaders.RECURSIVE_GLOB,
    srcs = [
I
Islam AbdelRahman 已提交
48 49 50
      "cache/clock_cache.cc",
      "cache/lru_cache.cc",
      "cache/sharded_cache.cc",
51 52 53 54 55 56 57 58
      "db/builder.cc",
      "db/c.cc",
      "db/column_family.cc",
      "db/compacted_db_impl.cc",
      "db/compaction.cc",
      "db/compaction_iterator.cc",
      "db/compaction_job.cc",
      "db/compaction_picker.cc",
I
Islam AbdelRahman 已提交
59
      "db/compaction_picker_universal.cc",
60 61 62
      "db/convenience.cc",
      "db/db_filesnapshot.cc",
      "db/db_impl.cc",
I
Islam AbdelRahman 已提交
63 64 65 66
      "db/db_impl_write.cc",
      "db/db_impl_compaction_flush.cc",
      "db/db_impl_files.cc",
      "db/db_impl_open.cc",
67 68
      "db/db_impl_debug.cc",
      "db/db_impl_experimental.cc",
I
Islam AbdelRahman 已提交
69
      "db/db_impl_readonly.cc",
70 71
      "db/db_info_dumper.cc",
      "db/db_iter.cc",
I
Islam AbdelRahman 已提交
72
      "db/dbformat.cc",
73
      "db/event_helpers.cc",
I
Islam AbdelRahman 已提交
74 75
      "db/experimental.cc",
      "db/external_sst_file_ingestion_job.cc",
76 77 78 79 80 81 82 83 84 85 86 87
      "db/file_indexer.cc",
      "db/flush_job.cc",
      "db/flush_scheduler.cc",
      "db/forward_iterator.cc",
      "db/internal_stats.cc",
      "db/log_reader.cc",
      "db/log_writer.cc",
      "db/managed_iterator.cc",
      "db/memtable.cc",
      "db/memtable_list.cc",
      "db/merge_helper.cc",
      "db/merge_operator.cc",
I
Islam AbdelRahman 已提交
88
      "db/range_del_aggregator.cc",
89 90 91 92 93 94 95 96 97 98 99 100 101
      "db/repair.cc",
      "db/snapshot_impl.cc",
      "db/table_cache.cc",
      "db/table_properties_collector.cc",
      "db/transaction_log_impl.cc",
      "db/version_builder.cc",
      "db/version_edit.cc",
      "db/version_set.cc",
      "db/wal_manager.cc",
      "db/write_batch.cc",
      "db/write_batch_base.cc",
      "db/write_controller.cc",
      "db/write_thread.cc",
I
Islam AbdelRahman 已提交
102 103 104 105 106 107
      "env/env.cc",
      "env/env_chroot.cc",
      "env/env_hdfs.cc",
      "env/env_posix.cc",
      "env/io_posix.cc",
      "env/memenv.cc",
108 109 110
      "memtable/hash_cuckoo_rep.cc",
      "memtable/hash_linklist_rep.cc",
      "memtable/hash_skiplist_rep.cc",
I
Islam AbdelRahman 已提交
111
      "memtable/memtable_allocator.cc",
112 113
      "memtable/skiplistrep.cc",
      "memtable/vectorrep.cc",
I
Islam AbdelRahman 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
      "monitoring/histogram.cc",
      "monitoring/histogram_windowing.cc",
      "monitoring/instrumented_mutex.cc",
      "monitoring/iostats_context.cc",
      "monitoring/perf_context.cc",
      "monitoring/perf_level.cc",
      "monitoring/statistics.cc",
      "monitoring/thread_status_impl.cc",
      "monitoring/thread_status_updater.cc",
      "monitoring/thread_status_updater_debug.cc",
      "monitoring/thread_status_util.cc",
      "monitoring/thread_status_util_debug.cc",
      "options/cf_options.cc",
      "options/db_options.cc",
      "options/options.cc",
      "options/options_helper.cc",
      "options/options_parser.cc",
      "options/options_sanity_check.cc",
132
      "port/port_posix.cc",
I
Islam AbdelRahman 已提交
133
      "port/stack_trace.cc",
134
      "table/adaptive_table_factory.cc",
I
Islam AbdelRahman 已提交
135
      "table/block.cc",
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
      "table/block_based_filter_block.cc",
      "table/block_based_table_builder.cc",
      "table/block_based_table_factory.cc",
      "table/block_based_table_reader.cc",
      "table/block_builder.cc",
      "table/block_prefix_index.cc",
      "table/bloom_block.cc",
      "table/cuckoo_table_builder.cc",
      "table/cuckoo_table_factory.cc",
      "table/cuckoo_table_reader.cc",
      "table/flush_block_policy.cc",
      "table/format.cc",
      "table/full_filter_block.cc",
      "table/get_context.cc",
      "table/index_builder.cc",
      "table/iterator.cc",
      "table/merging_iterator.cc",
      "table/meta_blocks.cc",
      "table/partitioned_filter_block.cc",
I
Islam AbdelRahman 已提交
155
      "table/persistent_cache_helper.cc",
156 157 158 159 160
      "table/plain_table_builder.cc",
      "table/plain_table_factory.cc",
      "table/plain_table_index.cc",
      "table/plain_table_key_coding.cc",
      "table/plain_table_reader.cc",
I
Islam AbdelRahman 已提交
161
      "table/sst_file_writer.cc",
162 163 164 165
      "table/table_properties.cc",
      "table/two_level_iterator.cc",
      "tools/dump/db_dump_tool.cc",
      "util/arena.cc",
I
Islam AbdelRahman 已提交
166
      "util/auto_roll_logger.cc",
167 168 169 170
      "util/bloom.cc",
      "util/build_version.cc",
      "util/coding.cc",
      "util/compaction_job_stats_impl.cc",
I
Islam AbdelRahman 已提交
171
      "util/comparator.cc",
172 173 174 175 176 177
      "util/concurrent_arena.cc",
      "util/crc32c.cc",
      "util/delete_scheduler.cc",
      "util/dynamic_bloom.cc",
      "util/event_logger.cc",
      "util/file_reader_writer.cc",
I
Islam AbdelRahman 已提交
178 179
      "util/file_util.cc",
      "util/filename.cc",
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
      "util/filter_policy.cc",
      "util/hash.cc",
      "util/log_buffer.cc",
      "util/murmurhash.cc",
      "util/random.cc",
      "util/rate_limiter.cc",
      "util/slice.cc",
      "util/sst_file_manager_impl.cc",
      "util/status.cc",
      "util/status_message.cc",
      "util/string_util.cc",
      "util/sync_point.cc",
      "util/thread_local.cc",
      "util/threadpool_imp.cc",
      "util/transaction_test_util.cc",
      "util/xxhash.cc",
      "utilities/backupable/backupable_db.cc",
      "utilities/blob_db/blob_db.cc",
198
      "utilities/checkpoint/checkpoint_impl.cc",
199
      "utilities/compaction_filters/remove_emptyvalue_compactionfilter.cc",
I
Islam AbdelRahman 已提交
200 201
      "utilities/convenience/info_log_finder.cc",
      "utilities/date_tiered/date_tiered_db_impl.cc",
202 203
      "utilities/document/document_db.cc",
      "utilities/document/json_document.cc",
I
Islam AbdelRahman 已提交
204
      "utilities/document/json_document_builder.cc",
205
      "utilities/env_mirror.cc",
I
Islam AbdelRahman 已提交
206
      "utilities/env_timed.cc",
207 208 209 210 211
      "utilities/geodb/geodb_impl.cc",
      "utilities/leveldb_options/leveldb_options.cc",
      "utilities/lua/rocks_lua_compaction_filter.cc",
      "utilities/memory/memory_util.cc",
      "utilities/merge_operators/max.cc",
I
Islam AbdelRahman 已提交
212
      "utilities/merge_operators/put.cc",
213
      "utilities/merge_operators/string_append/stringappend.cc",
I
Islam AbdelRahman 已提交
214
      "utilities/merge_operators/string_append/stringappend2.cc",
215 216 217
      "utilities/merge_operators/uint64add.cc",
      "utilities/option_change_migration/option_change_migration.cc",
      "utilities/options/options_util.cc",
I
Islam AbdelRahman 已提交
218
      "utilities/persistent_cache/block_cache_tier.cc",
219 220
      "utilities/persistent_cache/block_cache_tier_file.cc",
      "utilities/persistent_cache/block_cache_tier_metadata.cc",
I
Islam AbdelRahman 已提交
221 222
      "utilities/persistent_cache/persistent_cache_tier.cc",
      "utilities/persistent_cache/volatile_tier_impl.cc",
223 224 225 226 227
      "utilities/redis/redis_lists.cc",
      "utilities/simulator_cache/sim_cache.cc",
      "utilities/spatialdb/spatial_db.cc",
      "utilities/table_properties_collectors/compact_on_deletion_collector.cc",
      "utilities/transactions/optimistic_transaction_db_impl.cc",
I
Islam AbdelRahman 已提交
228
      "utilities/transactions/optimistic_transaction_impl.cc",
229 230 231 232
      "utilities/transactions/transaction_base.cc",
      "utilities/transactions/transaction_db_impl.cc",
      "utilities/transactions/transaction_db_mutex_impl.cc",
      "utilities/transactions/transaction_impl.cc",
I
Islam AbdelRahman 已提交
233
      "utilities/transactions/transaction_lock_mgr.cc",
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
      "utilities/transactions/transaction_util.cc",
      "utilities/ttl/db_ttl_impl.cc",
      "utilities/write_batch_with_index/write_batch_with_index.cc",
      "utilities/write_batch_with_index/write_batch_with_index_internal.cc",
      "tools/ldb_cmd.cc",
      "tools/ldb_tool.cc",
      "tools/sst_dump_tool.cc",
    ],
    deps = [],
    preprocessor_flags = rocksdb_preprocessor_flags,
    compiler_flags = rocksdb_compiler_flags,
    external_deps = rocksdb_external_deps,
)

cpp_library(
    name = "rocksdb_test_lib",
    headers = AutoHeaders.RECURSIVE_GLOB,
    srcs = [
I
Islam AbdelRahman 已提交
252
      "env/mock_env.cc",
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
      "table/mock_table.cc",
      "util/fault_injection_test_env.cc",
      "util/testharness.cc",
      "util/testutil.cc",
      "db/db_test_util.cc",
      "utilities/col_buf_encoder.cc",
      "utilities/col_buf_decoder.cc",
      "utilities/column_aware_encoding_util.cc",
    ],
    deps = [":rocksdb_lib"],
    preprocessor_flags = rocksdb_preprocessor_flags,
    compiler_flags = rocksdb_compiler_flags,
    external_deps = rocksdb_external_deps,
)

cpp_library(
    name = "rocksdb_tools_lib",
    headers = AutoHeaders.RECURSIVE_GLOB,
    srcs = [
      "tools/db_bench_tool.cc",
      "util/testutil.cc",
    ],
    deps = [":rocksdb_lib"],
    preprocessor_flags = rocksdb_preprocessor_flags,
    compiler_flags = rocksdb_compiler_flags,
    external_deps = rocksdb_external_deps,
)

cpp_library(
    name = "env_basic_test_lib",
    headers = AutoHeaders.RECURSIVE_GLOB,
I
Islam AbdelRahman 已提交
284
    srcs = ["env/env_basic_test.cc"],
285 286 287 288 289 290 291 292
    deps = [":rocksdb_test_lib"],
    preprocessor_flags = rocksdb_preprocessor_flags,
    compiler_flags = rocksdb_compiler_flags,
    external_deps = rocksdb_external_deps,
)

# [test_name, test_src, test_type]
ROCKS_TESTS = [['merger_test', 'table/merger_test.cc', 'serial'],
I
Islam AbdelRahman 已提交
293
 ['cache_test', 'cache/cache_test.cc', 'serial'],
294 295 296 297 298 299 300 301 302 303
 ['options_file_test', 'db/options_file_test.cc', 'serial'],
 ['compaction_picker_test', 'db/compaction_picker_test.cc', 'serial'],
 ['corruption_test', 'db/corruption_test.cc', 'serial'],
 ['thread_list_test', 'util/thread_list_test.cc', 'serial'],
 ['table_properties_collector_test',
  'db/table_properties_collector_test.cc',
  'serial'],
 ['document_db_test', 'utilities/document/document_db_test.cc', 'serial'],
 ['event_logger_test', 'util/event_logger_test.cc', 'serial'],
 ['coding_test', 'util/coding_test.cc', 'serial'],
I
Islam AbdelRahman 已提交
304 305
 ['statistics_test', 'monitoring/statistics_test.cc', 'serial'],
 ['options_settable_test', 'options/options_settable_test.cc', 'serial'],
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
 ['sst_dump_test', 'tools/sst_dump_test.cc', 'serial'],
 ['column_aware_encoding_test',
  'utilities/column_aware_encoding_test.cc',
  'serial'],
 ['db_iterator_test', 'db/db_iterator_test.cc', 'serial'],
 ['db_sst_test', 'db/db_sst_test.cc', 'parallel'],
 ['geodb_test', 'utilities/geodb/geodb_test.cc', 'serial'],
 ['listener_test', 'db/listener_test.cc', 'serial'],
 ['write_callback_test', 'db/write_callback_test.cc', 'serial'],
 ['version_set_test', 'db/version_set_test.cc', 'serial'],
 ['full_filter_block_test', 'table/full_filter_block_test.cc', 'serial'],
 ['cleanable_test', 'table/cleanable_test.cc', 'serial'],
 ['checkpoint_test', 'utilities/checkpoint/checkpoint_test.cc', 'serial'],
 ['compact_files_test', 'db/compact_files_test.cc', 'serial'],
 ['db_options_test', 'db/db_options_test.cc', 'serial'],
 ['object_registry_test', 'utilities/object_registry_test.cc', 'serial'],
 ['blob_db_test', 'utilities/blob_db/blob_db_test.cc', 'serial'],
I
Islam AbdelRahman 已提交
323
 ['auto_roll_logger_test', 'util/auto_roll_logger_test.cc', 'serial'],
324 325 326 327 328 329 330 331 332 333 334 335 336 337
 ['dbformat_test', 'db/dbformat_test.cc', 'serial'],
 ['write_batch_with_index_test',
  'utilities/write_batch_with_index/write_batch_with_index_test.cc',
  'serial'],
 ['json_document_test', 'utilities/document/json_document_test.cc', 'serial'],
 ['file_reader_writer_test', 'util/file_reader_writer_test.cc', 'serial'],
 ['repair_test', 'db/repair_test.cc', 'serial'],
 ['persistent_cache_test',
  'utilities/persistent_cache/persistent_cache_test.cc',
  'parallel'],
 ['db_bloom_filter_test', 'db/db_bloom_filter_test.cc', 'serial'],
 ['external_sst_file_basic_test',
  'db/external_sst_file_basic_test.cc',
  'serial'],
I
Islam AbdelRahman 已提交
338
 ['options_test', 'options/options_test.cc', 'serial'],
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
 ['perf_context_test', 'db/perf_context_test.cc', 'serial'],
 ['db_block_cache_test', 'db/db_block_cache_test.cc', 'serial'],
 ['heap_test', 'util/heap_test.cc', 'serial'],
 ['db_test2', 'db/db_test2.cc', 'serial'],
 ['filelock_test', 'util/filelock_test.cc', 'serial'],
 ['write_controller_test', 'db/write_controller_test.cc', 'serial'],
 ['compaction_iterator_test', 'db/compaction_iterator_test.cc', 'serial'],
 ['spatial_db_test', 'utilities/spatialdb/spatial_db_test.cc', 'serial'],
 ['c_test', 'db/c_test.c', 'serial'],
 ['range_del_aggregator_test', 'db/range_del_aggregator_test.cc', 'serial'],
 ['date_tiered_test', 'utilities/date_tiered/date_tiered_test.cc', 'serial'],
 ['ldb_cmd_test', 'tools/ldb_cmd_test.cc', 'serial'],
 ['db_test', 'db/db_test.cc', 'parallel'],
 ['block_based_filter_block_test',
  'table/block_based_filter_block_test.cc',
  'serial'],
 ['merge_test', 'db/merge_test.cc', 'serial'],
 ['bloom_test', 'util/bloom_test.cc', 'serial'],
 ['block_test', 'table/block_test.cc', 'serial'],
 ['cuckoo_table_builder_test', 'table/cuckoo_table_builder_test.cc', 'serial'],
 ['backupable_db_test',
  'utilities/backupable/backupable_db_test.cc',
  'parallel'],
 ['db_flush_test', 'db/db_flush_test.cc', 'serial'],
 ['filename_test', 'db/filename_test.cc', 'serial'],
 ['cuckoo_table_reader_test', 'table/cuckoo_table_reader_test.cc', 'serial'],
 ['slice_transform_test', 'util/slice_transform_test.cc', 'serial'],
 ['cuckoo_table_db_test', 'db/cuckoo_table_db_test.cc', 'serial'],
I
Islam AbdelRahman 已提交
367
 ['inlineskiplist_test', 'memtable/inlineskiplist_test.cc', 'parallel'],
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
 ['optimistic_transaction_test',
  'utilities/transactions/optimistic_transaction_test.cc',
  'serial'],
 ['hash_table_test',
  'utilities/persistent_cache/hash_table_test.cc',
  'serial'],
 ['db_dynamic_level_test', 'db/db_dynamic_level_test.cc', 'serial'],
 ['option_change_migration_test',
  'utilities/option_change_migration/option_change_migration_test.cc',
  'serial'],
 ['db_inplace_update_test', 'db/db_inplace_update_test.cc', 'serial'],
 ['autovector_test', 'util/autovector_test.cc', 'serial'],
 ['db_iter_test', 'db/db_iter_test.cc', 'serial'],
 ['flush_job_test', 'db/flush_job_test.cc', 'serial'],
 ['wal_manager_test', 'db/wal_manager_test.cc', 'serial'],
 ['write_batch_test', 'db/write_batch_test.cc', 'serial'],
 ['crc32c_test', 'util/crc32c_test.cc', 'serial'],
 ['rate_limiter_test', 'util/rate_limiter_test.cc', 'serial'],
 ['external_sst_file_test', 'db/external_sst_file_test.cc', 'parallel'],
 ['compaction_job_test', 'db/compaction_job_test.cc', 'serial'],
I
Islam AbdelRahman 已提交
388
 ['mock_env_test', 'env/mock_env_test.cc', 'serial'],
389 390 391 392 393 394 395 396 397 398 399 400 401
 ['db_table_properties_test', 'db/db_table_properties_test.cc', 'serial'],
 ['db_compaction_test', 'db/db_compaction_test.cc', 'parallel'],
 ['arena_test', 'util/arena_test.cc', 'serial'],
 ['stringappend_test',
  'utilities/merge_operators/string_append/stringappend_test.cc',
  'serial'],
 ['reduce_levels_test', 'tools/reduce_levels_test.cc', 'serial'],
 ['prefix_test', 'db/prefix_test.cc', 'serial'],
 ['ttl_test', 'utilities/ttl/ttl_test.cc', 'serial'],
 ['merge_helper_test', 'db/merge_helper_test.cc', 'serial'],
 ['file_indexer_test', 'db/file_indexer_test.cc', 'serial'],
 ['memory_test', 'utilities/memory/memory_test.cc', 'serial'],
 ['log_test', 'db/log_test.cc', 'serial'],
I
Islam AbdelRahman 已提交
402
 ['env_timed_test', 'utilities/env_timed_test.cc', 'serial'],
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
 ['deletefile_test', 'db/deletefile_test.cc', 'serial'],
 ['partitioned_filter_block_test',
  'table/partitioned_filter_block_test.cc',
  'serial'],
 ['comparator_db_test', 'db/comparator_db_test.cc', 'serial'],
 ['compaction_job_stats_test', 'db/compaction_job_stats_test.cc', 'serial'],
 ['thread_local_test', 'util/thread_local_test.cc', 'serial'],
 ['version_builder_test', 'db/version_builder_test.cc', 'serial'],
 ['db_range_del_test', 'db/db_range_del_test.cc', 'serial'],
 ['table_test', 'table/table_test.cc', 'parallel'],
 ['db_tailing_iter_test', 'db/db_tailing_iter_test.cc', 'serial'],
 ['db_compaction_filter_test', 'db/db_compaction_filter_test.cc', 'parallel'],
 ['options_util_test', 'utilities/options/options_util_test.cc', 'serial'],
 ['dynamic_bloom_test', 'util/dynamic_bloom_test.cc', 'serial'],
 ['db_basic_test', 'db/db_basic_test.cc', 'serial'],
 ['db_merge_operator_test', 'db/db_merge_operator_test.cc', 'serial'],
 ['manual_compaction_test', 'db/manual_compaction_test.cc', 'parallel'],
 ['delete_scheduler_test', 'util/delete_scheduler_test.cc', 'serial'],
 ['transaction_test', 'utilities/transactions/transaction_test.cc', 'serial'],
 ['db_io_failure_test', 'db/db_io_failure_test.cc', 'serial'],
 ['db_log_iter_test', 'db/db_log_iter_test.cc', 'serial'],
 ['compact_on_deletion_collector_test',
  'utilities/table_properties_collectors/compact_on_deletion_collector_test.cc',
  'serial'],
I
Islam AbdelRahman 已提交
427
 ['env_test', 'env/env_test.cc', 'serial'],
428 429 430 431 432 433
 ['db_wal_test', 'db/db_wal_test.cc', 'parallel'],
 ['sim_cache_test', 'utilities/simulator_cache/sim_cache_test.cc', 'serial'],
 ['db_memtable_test', 'db/db_memtable_test.cc', 'serial'],
 ['db_universal_compaction_test',
  'db/db_universal_compaction_test.cc',
  'parallel'],
I
Islam AbdelRahman 已提交
434
 ['histogram_test', 'monitoring/histogram_test.cc', 'serial'],
435 436 437 438
 ['util_merge_operators_test',
  'utilities/util_merge_operators_test.cc',
  'serial'],
 ['fault_injection_test', 'db/fault_injection_test.cc', 'parallel'],
I
Islam AbdelRahman 已提交
439 440
 ['env_basic_test', 'env/env_basic_test.cc', 'serial'],
 ['iostats_context_test', 'monitoring/iostats_context_test.cc', 'serial'],
441 442 443 444
 ['memtable_list_test', 'db/memtable_list_test.cc', 'serial'],
 ['column_family_test', 'db/column_family_test.cc', 'serial'],
 ['db_properties_test', 'db/db_properties_test.cc', 'serial'],
 ['version_edit_test', 'db/version_edit_test.cc', 'serial'],
I
Islam AbdelRahman 已提交
445 446
 ['skiplist_test', 'memtable/skiplist_test.cc', 'serial'],
 ['lru_cache_test', 'cache/lru_cache_test.cc', 'serial'],
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
 ['plain_table_db_test', 'db/plain_table_db_test.cc', 'serial']]


# Generate a test rule for each entry in ROCKS_TESTS
for test_cfg in ROCKS_TESTS:
    test_name = test_cfg[0]
    test_cc = test_cfg[1]
    ttype = "gtest" if test_cfg[2] == "parallel" else "simple"
    test_bin = test_name + "_bin"

    cpp_binary (
      name = test_bin,
      srcs = [test_cc],
      deps = [":rocksdb_test_lib"],
      preprocessor_flags = rocksdb_preprocessor_flags,
      compiler_flags = rocksdb_compiler_flags,
      external_deps = rocksdb_external_deps,
    )

    custom_unittest(
      name = test_name,
      type = ttype,
      deps = [":" + test_bin],
      command = [TEST_RUNNER, BUCK_BINS + test_bin]
    )