mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
44 lines
1.3 KiB
2 years ago
|
### DO NOT EDIT. Generated file.
|
||
|
#
|
||
|
# To regenerate, run the following from your project's workspace:
|
||
|
#
|
||
|
# bazel run @com_google_fuzztest//bazel:setup_configs > fuzztest.bazelrc
|
||
|
#
|
||
|
# And don't forget to add the following to your project's .bazelrc:
|
||
|
#
|
||
|
# try-import %workspace%/fuzztest.bazelrc
|
||
|
|
||
|
|
||
|
### Common options.
|
||
|
#
|
||
|
# Do not use directly.
|
||
|
|
||
|
# Link with Address Sanitizer (ASAN).
|
||
|
build:fuzztest-common --linkopt=-fsanitize=address
|
||
|
|
||
|
# Standard define for "ifdef-ing" any fuzz test specific code.
|
||
|
build:fuzztest-common --copt=-DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
|
||
|
|
||
|
# In fuzz tests, we want to catch assertion violations even in optimized builds.
|
||
|
build:fuzztest-common --copt=-UNDEBUG
|
||
|
|
||
|
|
||
|
### FuzzTest build configuration.
|
||
|
#
|
||
|
# Use with: --config=fuzztest
|
||
|
|
||
|
build:fuzztest --config=fuzztest-common
|
||
|
|
||
|
# Link statically.
|
||
|
build:fuzztest --dynamic_mode=off
|
||
|
|
||
|
# We rely on the following flag instead of the compiler provided
|
||
|
# __has_feature(address_sanitizer) to know that we have an ASAN build even in
|
||
|
# the uninstrumented runtime.
|
||
|
build:fuzztest --copt=-DADDRESS_SANITIZER
|
||
|
|
||
|
# We apply coverage tracking and ASAN instrumentation to everything but the
|
||
|
# FuzzTest framework itself (including GoogleTest and GoogleMock).
|
||
|
build:fuzztest --per_file_copt=+//,-fuzztest/.*,-googletest/.*,-googlemock/.*@-fsanitize=address,-fsanitize-coverage=inline-8bit-counters,-fsanitize-coverage=trace-cmp
|
||
|
|