mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-04-26 12:52:14 +03:00
The initial migration to a Bazel based build. All attempts have been made to maintain configuration parity with the upstream build.
44 lines
991 B
Text
44 lines
991 B
Text
load("@rules_cc//cc:defs.bzl", "cc_test")
|
|
load("@jemalloc//settings:config.bzl", "jemalloc")
|
|
|
|
# Case 1: Test libc malloc can be replaced
|
|
cc_test(
|
|
name = "test_1_basic",
|
|
size = "small",
|
|
srcs = ["test_basic.c"],
|
|
malloc = "@jemalloc",
|
|
)
|
|
|
|
# Case 2: Test that the jemalloc API can be used
|
|
cc_test(
|
|
name = "test_2_api",
|
|
size = "small",
|
|
srcs = ["test_api.c"],
|
|
malloc = "@jemalloc",
|
|
)
|
|
|
|
# Case 3: Test convenience rule can modify the library build settings
|
|
jemalloc(
|
|
name = "jemalloc_custom",
|
|
cache_oblivious = "False",
|
|
cxx = "False",
|
|
log = "True",
|
|
stats = "False",
|
|
without_export = "False",
|
|
)
|
|
|
|
cc_test(
|
|
name = "test_3_config",
|
|
size = "small",
|
|
srcs = ["test_basic.c"],
|
|
malloc = ":jemalloc_custom",
|
|
)
|
|
|
|
# Case 4: Optional features are gated by config settings
|
|
cc_test(
|
|
name = "test_4_requires_stats",
|
|
size = "small",
|
|
srcs = ["test_api.c"],
|
|
args = ["--expect-stats-unavailable"],
|
|
malloc = ":jemalloc_custom",
|
|
)
|