Skip to content

Commit

Permalink
fix: remove quotes that break things
Browse files Browse the repository at this point in the history
  • Loading branch information
sudden6 committed Dec 8, 2022
1 parent e0436a2 commit 4dfbfc1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions testing/run_afl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cd _afl_build_ubsan
export AFL_USE_UBSAN=1

# build c-toxcore using afl instrumentation
cmake -DCMAKE_BUILD_TYPE=Debug "$COMMON_CMAKE_OPTIONS" ..
cmake -DCMAKE_BUILD_TYPE=Debug $COMMON_CMAKE_OPTIONS ..

# build fuzzer target
cmake --build ./ --target bootstrap_fuzzer
Expand All @@ -28,7 +28,7 @@ cd _afl_build_msan
export AFL_USE_MSAN=1

# build c-toxcore using afl instrumentation
cmake -DCMAKE_BUILD_TYPE=Debug "$COMMON_CMAKE_OPTIONS" ..
cmake -DCMAKE_BUILD_TYPE=Debug $COMMON_CMAKE_OPTIONS ..

# build fuzzer target
cmake --build ./ --target bootstrap_fuzzer
Expand All @@ -44,7 +44,7 @@ cd _afl_build_asan
export AFL_USE_ASAN=1

# build c-toxcore using afl instrumentation
cmake -DCMAKE_BUILD_TYPE=Debug "$COMMON_CMAKE_OPTIONS" ..
cmake -DCMAKE_BUILD_TYPE=Debug $COMMON_CMAKE_OPTIONS ..

# build fuzzer target
cmake --build ./ --target bootstrap_fuzzer
Expand All @@ -58,7 +58,7 @@ mkdir -p _afl_build
cd _afl_build

# build c-toxcore using afl instrumentation
cmake -DCMAKE_BUILD_TYPE=Debug "$COMMON_CMAKE_OPTIONS" ..
cmake -DCMAKE_BUILD_TYPE=Debug $COMMON_CMAKE_OPTIONS ..

# build fuzzer target
cmake --build ./ --target bootstrap_fuzzer
Expand All @@ -72,7 +72,7 @@ cd _afl_build_cmplog
export AFL_LLVM_CMPLOG=1

# build c-toxcore using afl instrumentation
cmake -DCMAKE_BUILD_TYPE=Debug "$COMMON_CMAKE_OPTIONS" ..
cmake -DCMAKE_BUILD_TYPE=Debug $COMMON_CMAKE_OPTIONS ..

# build fuzzer target
cmake --build ./ --target bootstrap_fuzzer
Expand All @@ -86,7 +86,7 @@ mkdir -p _cov_build
cd _cov_build

# build c-toxcore using afl instrumentation
cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-fprofile-arcs -ftest-coverage" -DCMAKE_C_FLAGS="-fprofile-arcs -ftest-coverage" -DCMAKE_VERBOSE_MAKEFILE=ON "$COMMON_CMAKE_OPTIONS" ..
cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-fprofile-arcs -ftest-coverage" -DCMAKE_C_FLAGS="-fprofile-arcs -ftest-coverage" -DCMAKE_VERBOSE_MAKEFILE=ON $COMMON_CMAKE_OPTIONS ..

# build fuzzer target
cmake --build ./ --target bootstrap_fuzzer
Expand Down

0 comments on commit 4dfbfc1

Please sign in to comment.