mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-05-18 10:56:20 +03:00
97 lines
3 KiB
Text
97 lines
3 KiB
Text
load("@bazel_skylib//rules:expand_template.bzl", "expand_template")
|
|
load("@rules_cc//cc:defs.bzl", "cc_library")
|
|
load("//tools:cc.bzl", "COPTS")
|
|
|
|
expand_template(
|
|
name = "jemalloc_test",
|
|
testonly = True,
|
|
out = "include/test/jemalloc_test.h",
|
|
substitutions = {
|
|
"@install_suffix@": "",
|
|
"@je_@": "je_",
|
|
"@private_namespace@": "je_",
|
|
},
|
|
template = "include/test/jemalloc_test.h.in",
|
|
)
|
|
|
|
expand_template(
|
|
name = "jemalloc_test_defs",
|
|
testonly = True,
|
|
out = "include/test/jemalloc_test_defs.h",
|
|
substitutions = {
|
|
"#undef HAVE_SSE2": "/* #undef HAVE_SSE2 */",
|
|
"#undef HAVE_ALTIVEC": "/* #undef HAVE_ALTIVEC */",
|
|
},
|
|
template = "include/test/jemalloc_test_defs.h.in",
|
|
)
|
|
|
|
cc_library(
|
|
name = "testlib",
|
|
testonly = True,
|
|
srcs = [
|
|
"src/SFMT.c",
|
|
"src/btalloc.c",
|
|
"src/btalloc_0.c",
|
|
"src/btalloc_1.c",
|
|
"src/math.c",
|
|
"src/mtx.c",
|
|
"src/sleep.c",
|
|
"src/test.c",
|
|
"src/thd.c",
|
|
"src/timer.c",
|
|
],
|
|
hdrs = [
|
|
"include/test/SFMT.h",
|
|
"include/test/SFMT-alti.h",
|
|
"include/test/SFMT-params.h",
|
|
"include/test/SFMT-params11213.h",
|
|
"include/test/SFMT-params1279.h",
|
|
"include/test/SFMT-params132049.h",
|
|
"include/test/SFMT-params19937.h",
|
|
"include/test/SFMT-params216091.h",
|
|
"include/test/SFMT-params2281.h",
|
|
"include/test/SFMT-params4253.h",
|
|
"include/test/SFMT-params44497.h",
|
|
"include/test/SFMT-params607.h",
|
|
"include/test/SFMT-params86243.h",
|
|
"include/test/SFMT-sse2.h",
|
|
"include/test/arena_util.h",
|
|
"include/test/bench.h",
|
|
"include/test/bgthd.h",
|
|
"include/test/btalloc.h",
|
|
"include/test/extent_hooks.h",
|
|
"include/test/jemalloc_test.h",
|
|
"include/test/jemalloc_test_defs.h",
|
|
"include/test/math.h",
|
|
"include/test/mq.h",
|
|
"include/test/mtx.h",
|
|
"include/test/nbits.h",
|
|
"include/test/san.h",
|
|
"include/test/sleep.h",
|
|
"include/test/test.h",
|
|
"include/test/thd.h",
|
|
"include/test/timer.h",
|
|
"//test/unit:arena_reset.c", # included by arena_reset_prof.c
|
|
"//test/unit:batch_alloc.c", # included by batch_alloc_prof.c
|
|
],
|
|
copts = COPTS,
|
|
includes = ["include"],
|
|
linkstatic = True,
|
|
local_defines = select(
|
|
{
|
|
"//settings:unit_test": ["JEMALLOC_UNIT_TEST"],
|
|
"//settings:integration_test": ["JEMALLOC_INTEGRATION_TEST"],
|
|
"//settings:integration_cpp_test": ["JEMALLOC_INTEGRATION_CPP_TEST"],
|
|
},
|
|
no_match_error = "Explicit test setting must be configured //settings:with_test",
|
|
),
|
|
tags = ["manual"],
|
|
visibility = ["//test:__subpackages__"],
|
|
deps = ["//:jemalloc_core"] + select(
|
|
{
|
|
"//settings:integration_test": ["//:utils"],
|
|
"//settings:integration_cpp_test": ["//:utils"],
|
|
"//conditions:default": [],
|
|
},
|
|
),
|
|
)
|