mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 05:05:00 +00:00
Fix spelling of OSS-Fuzz
This commit is contained in:
parent
5321c113f1
commit
76935aa308
3 changed files with 6 additions and 6 deletions
4
.github/workflows/fuzzing.yml
vendored
4
.github/workflows/fuzzing.yml
vendored
|
@ -102,8 +102,8 @@ jobs:
|
|||
fuzz_args=(
|
||||
-jobs=$(nproc)
|
||||
-print_final_stats=1
|
||||
-rss_limit_mb=2560 # from oss-fuzz
|
||||
-timeout=25 # from oss-fuzz
|
||||
-rss_limit_mb=2560 # from OSS-Fuzz
|
||||
-timeout=25 # from OSS-Fuzz
|
||||
)
|
||||
|
||||
set -x -o pipefail
|
||||
|
|
|
@ -134,7 +134,7 @@ expat_shy_set(EXPAT_SHARED_LIBS ${_EXPAT_SHARED_LIBS_DEFAULT} CACHE BOOL "Build
|
|||
expat_shy_set(EXPAT_BUILD_DOCS ${_EXPAT_BUILD_DOCS_DEFAULT} CACHE BOOL "Build man page for xmlwf")
|
||||
expat_shy_set(EXPAT_BUILD_FUZZERS OFF CACHE BOOL "Build fuzzers for the expat library")
|
||||
expat_shy_set(EXPAT_BUILD_PKGCONFIG ${_EXPAT_BUILD_PKGCONFIG_DEFAULT} CACHE BOOL "Build pkg-config file")
|
||||
expat_shy_set(EXPAT_OSSFUZZ_BUILD OFF CACHE BOOL "Build fuzzers via ossfuzz for the expat library")
|
||||
expat_shy_set(EXPAT_OSSFUZZ_BUILD OFF CACHE BOOL "Build fuzzers via OSS-Fuzz for the expat library")
|
||||
if(UNIX OR _EXPAT_HELP)
|
||||
expat_shy_set(EXPAT_WITH_LIBBSD OFF CACHE BOOL "Utilize libbsd (for arc4random_buf)")
|
||||
endif()
|
||||
|
@ -724,7 +724,7 @@ if(EXPAT_BUILD_FUZZERS)
|
|||
message(SEND_ERROR
|
||||
"OSS-Fuzz builds require the environment variable "
|
||||
"LIB_FUZZING_ENGINE to be set. If you are seeing this "
|
||||
"warning, it points to a deeper problem in the ossfuzz "
|
||||
"warning, it points to a deeper problem in the OSS-Fuzz "
|
||||
"build setup.")
|
||||
endif()
|
||||
|
||||
|
@ -760,7 +760,7 @@ if(EXPAT_BUILD_FUZZERS)
|
|||
else()
|
||||
if(EXPAT_OSSFUZZ_BUILD)
|
||||
message(SEND_ERROR
|
||||
"Attempting to perform an ossfuzz build without turning on the fuzzer build. "
|
||||
"Attempting to perform an OSS-Fuzz build without turning on the fuzzer build. "
|
||||
"This is likely in error - consider adding "
|
||||
"-DEXPAT_BUILD_FUZZERS=ON to your cmake execution.")
|
||||
endif()
|
||||
|
|
|
@ -295,7 +295,7 @@ EXPAT_ENABLE_INSTALL:BOOL=ON
|
|||
// Use /MT flag (static CRT) when compiling in MSVC
|
||||
EXPAT_MSVC_STATIC_CRT:BOOL=OFF
|
||||
|
||||
// Build fuzzers via ossfuzz for the expat library
|
||||
// Build fuzzers via OSS-Fuzz for the expat library
|
||||
EXPAT_OSSFUZZ_BUILD:BOOL=OFF
|
||||
|
||||
// Build a shared expat library
|
||||
|
|
Loading…
Add table
Reference in a new issue