Skip to content

Commit

Permalink
Added random testcsse for fuzzing (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
gfoidl committed Apr 14, 2020
1 parent 0b3e38d commit 9a2c310
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .azure/pipelines/jobs/fuzzing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,15 @@ jobs:
./init.sh
displayName: init
- bash: |
echo "------------------------------------------------"
echo "writing random data (encoded) to testcases/2.dat"
echo "------------------------------------------------"
cd fuzz
head /dev/urandom | base64 | tee testcases/2.dat
displayName: 'more entropy for fuzz'
- bash: |
if [[ "$COMPLUS_ENABLEAVX" == "0" ]]; then
export COMPlus_EnableAVX=0
Expand All @@ -53,6 +62,8 @@ jobs:
fi
cd fuzz
# TIMEOUT variable defined in pipeline-UI
./run.sh $(TIMEOUT) ${{ parameters.method }}
displayName: run
Expand Down

0 comments on commit 9a2c310

Please sign in to comment.