Exclude c_test from buck build opt mode (#7093)

Summary:
Fix a Facebook internal build

Pull Request resolved: https://github.com/facebook/rocksdb/pull/7093

Test Plan:
buck build mode/opt :c_test :c_test_bin (was compilation
failure, now "not found")
buck build mode/dev :c_test :c_test_bin (still passes)

Reviewed By: ajkr

Differential Revision: D22412528

Pulled By: pdillinger

fbshipit-source-id: 8e55c43dbf95386597e4cc690c41d9cbdcee03aa
main
Peter Dillinger 5 years ago committed by Facebook GitHub Bot
parent 92731b6b4a
commit dbf5c55812
  1. 36
      TARGETS
  2. 36
      buckifier/targets_builder.py

@ -449,24 +449,26 @@ cpp_library(
external_deps = ROCKSDB_EXTERNAL_DEPS, external_deps = ROCKSDB_EXTERNAL_DEPS,
) )
cpp_binary( if not is_opt_mode:
name = "c_test_bin", cpp_binary(
srcs = ["db/c_test.c"], name = "c_test_bin",
arch_preprocessor_flags = ROCKSDB_ARCH_PREPROCESSOR_FLAGS, srcs = ["db/c_test.c"],
os_preprocessor_flags = ROCKSDB_OS_PREPROCESSOR_FLAGS, arch_preprocessor_flags = ROCKSDB_ARCH_PREPROCESSOR_FLAGS,
compiler_flags = ROCKSDB_COMPILER_FLAGS, os_preprocessor_flags = ROCKSDB_OS_PREPROCESSOR_FLAGS,
preprocessor_flags = ROCKSDB_PREPROCESSOR_FLAGS, compiler_flags = ROCKSDB_COMPILER_FLAGS,
deps = [":rocksdb_test_lib"], preprocessor_flags = ROCKSDB_PREPROCESSOR_FLAGS,
) deps = [":rocksdb_test_lib"],
)
custom_unittest( if not is_opt_mode:
"c_test", custom_unittest(
command = [ "c_test",
native.package_name() + "/buckifier/rocks_test_runner.sh", command = [
"$(location :{})".format("c_test_bin"), native.package_name() + "/buckifier/rocks_test_runner.sh",
], "$(location :{})".format("c_test_bin"),
type = "simple", ],
) type = "simple",
)
cpp_library( cpp_library(
name = "env_basic_test_lib", name = "env_basic_test_lib",

@ -78,24 +78,26 @@ class TARGETSBuilder(object):
def add_c_test(self): def add_c_test(self):
self.targets_file.write(""" self.targets_file.write("""
cpp_binary( if not is_opt_mode:
name = "c_test_bin", cpp_binary(
srcs = ["db/c_test.c"], name = "c_test_bin",
arch_preprocessor_flags = ROCKSDB_ARCH_PREPROCESSOR_FLAGS, srcs = ["db/c_test.c"],
os_preprocessor_flags = ROCKSDB_OS_PREPROCESSOR_FLAGS, arch_preprocessor_flags = ROCKSDB_ARCH_PREPROCESSOR_FLAGS,
compiler_flags = ROCKSDB_COMPILER_FLAGS, os_preprocessor_flags = ROCKSDB_OS_PREPROCESSOR_FLAGS,
preprocessor_flags = ROCKSDB_PREPROCESSOR_FLAGS, compiler_flags = ROCKSDB_COMPILER_FLAGS,
deps = [":rocksdb_test_lib"], preprocessor_flags = ROCKSDB_PREPROCESSOR_FLAGS,
) deps = [":rocksdb_test_lib"],
)
custom_unittest( if not is_opt_mode:
"c_test", custom_unittest(
command = [ "c_test",
native.package_name() + "/buckifier/rocks_test_runner.sh", command = [
"$(location :{})".format("c_test_bin"), native.package_name() + "/buckifier/rocks_test_runner.sh",
], "$(location :{})".format("c_test_bin"),
type = "simple", ],
) type = "simple",
)
""") """)
def register_test(self, def register_test(self,

Loading…
Cancel
Save