Skip to content

Commit 8f02953

Browse files
authored
Merge pull request #1370 from xwings/dev
since shell script using sh, if [[]] is a bash specific syntax
2 parents 9a78d18 + dff4bfa commit 8f02953

1 file changed

Lines changed: 9 additions & 8 deletions

File tree

  • examples/fuzzing/linux_x8664
Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
#!/usr/bin/sh
22
set -e
3-
if [[ ! -d ./AFLplusplus ]]; then
4-
git clone https://github.com/AFLplusplus/AFLplusplus.git
5-
cd AFLplusplus
6-
make
7-
cd ./unicorn_mode
8-
./build_unicorn_support.sh
9-
cd ../../
10-
fi
3+
4+
# git clone https://github.com/AFLplusplus/AFLplusplus.git
5+
# cd AFLplusplus
6+
# make
7+
# cd ./unicorn_mode
8+
# ./build_unicorn_support.sh
9+
# cd ../../
10+
# fi
11+
1112
AFL_AUTORESUME=1 AFL_PATH="$(realpath ./AFLplusplus)" PATH="$AFL_PATH:$PATH" afl-fuzz -i afl_inputs -o afl_outputs -U -- python3 ./fuzz_x8664_linux.py @@

0 commit comments

Comments
 (0)