7ab1c81f6b
The clang-analyzer-unix.Malloc and other warnings in these unit tests are either false positive or in negative tests that can be ignored. Bug: 259995529 Test: presubmits; make tidy-bionic-libc_subset Change-Id: Iddabe613d21d3717ba34f9e4d5bb97436279649f
90 lines
2 KiB
Text
90 lines
2 KiB
Text
// ==============================================================
|
|
// libc_malloc_hooks.so
|
|
// ==============================================================
|
|
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "bionic_libc_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-BSD
|
|
default_applicable_licenses: ["bionic_libc_license"],
|
|
}
|
|
|
|
cc_library {
|
|
name: "libc_malloc_hooks",
|
|
|
|
srcs: [
|
|
"malloc_hooks.cpp",
|
|
],
|
|
|
|
static_libs: [
|
|
"libasync_safe",
|
|
],
|
|
|
|
multilib: {
|
|
lib32: {
|
|
version_script: "exported32.map",
|
|
},
|
|
lib64: {
|
|
version_script: "exported64.map",
|
|
},
|
|
},
|
|
include_dirs: ["bionic/libc"],
|
|
|
|
sanitize: {
|
|
never: true,
|
|
},
|
|
native_coverage: false,
|
|
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
"-fno-stack-protector",
|
|
],
|
|
|
|
apex_available: [
|
|
"com.android.runtime",
|
|
],
|
|
static: {
|
|
apex_available: [
|
|
"//apex_available:platform",
|
|
],
|
|
},
|
|
}
|
|
|
|
// ==============================================================
|
|
// Unit Tests
|
|
// ==============================================================
|
|
cc_test {
|
|
name: "malloc_hooks_system_tests",
|
|
isolated: true,
|
|
|
|
// The clang-analyzer-unix.Malloc and other warnings in these
|
|
// unit tests are either false positive or in
|
|
// negative tests that can be ignored.
|
|
tidy: false,
|
|
|
|
srcs: [
|
|
"tests/malloc_hooks_tests.cpp",
|
|
],
|
|
|
|
whole_static_libs: ["libc_malloc_hooks"],
|
|
|
|
shared_libs: ["libbase"],
|
|
|
|
local_include_dirs: ["tests"],
|
|
include_dirs: [
|
|
"bionic/libc",
|
|
"bionic"
|
|
],
|
|
header_libs: [
|
|
"bionic_libc_platform_headers",
|
|
],
|
|
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
"-O1", // FIXME: http://b/169206016 - issues with aligned_alloc and -O2
|
|
],
|
|
test_suites: ["general-tests"],
|
|
}
|