@@ -532,7 +532,7 @@ cmake -B build -DCMAKE_C_COMPILER="clang" \
532532 -DAPPEND_CFLAGS=" -fprofile-instr-generate -fcoverage-mapping" \
533533 -DAPPEND_CXXFLAGS=" -fprofile-instr-generate -fcoverage-mapping" \
534534 -DAPPEND_LDFLAGS=" -fprofile-instr-generate -fcoverage-mapping"
535- cmake --build build # Use "-j N" here for N parallel jobs.
535+ cmake --build build # Append "-j N" here for N parallel jobs.
536536```
537537
538538Generating the raw profile data based on ` ctest ` and functional tests execution:
@@ -542,8 +542,8 @@ Generating the raw profile data based on `ctest` and functional tests execution:
542542mkdir -p build/raw_profile_data
543543
544544# Run tests to generate profiles
545- LLVM_PROFILE_FILE=" $( pwd) /build/raw_profile_data/%m_%p.profraw" ctest --test-dir build # Use "-j N" here for N parallel jobs.
546- LLVM_PROFILE_FILE=" $( pwd) /build/raw_profile_data/%m_%p.profraw" build/test/functional/test_runner.py # Use "-j N" here for N parallel jobs
545+ LLVM_PROFILE_FILE=" $( pwd) /build/raw_profile_data/%m_%p.profraw" ctest --test-dir build # Append "-j N" here for N parallel jobs.
546+ LLVM_PROFILE_FILE=" $( pwd) /build/raw_profile_data/%m_%p.profraw" build/test/functional/test_runner.py # Append "-j N" here for N parallel jobs
547547
548548# Merge all the raw profile data into a single file
549549find build/raw_profile_data -name " *.profraw" | xargs llvm-profdata merge -o build/coverage.profdata
@@ -583,7 +583,7 @@ cmake -B build \
583583 -DCMAKE_C_FLAGS=" -fprofile-instr-generate -fcoverage-mapping" \
584584 -DCMAKE_CXX_FLAGS=" -fprofile-instr-generate -fcoverage-mapping" \
585585 -DBUILD_FOR_FUZZING=ON
586- cmake --build build # Use "-j N" here for N parallel jobs.
586+ cmake --build build # Append "-j N" here for N parallel jobs.
587587```
588588
589589Running fuzz tests with one or more targets
0 commit comments