summaryrefslogtreecommitdiff
path: root/compiler-rt/test/fuzzer/ReloadTest.cpp
AgeCommit message (Collapse)Author
2019-04-24[fuzzer] Fix reload.test on Linux/aarch64Adhemerval Zanella
The compiler generates a 'brk' instruction for __builtin_trap on aarch64 and Linux kernel issues a SIGTRAP. It is different from x86, where compiler emits an 'ud2' and kernel issues a SIGILL. A straightforward is to use abort instead. llvm-svn: 359126
2019-04-05Use binary write mode in WriteToFile function to avoid appended \r ↵Vitaly Buka
characters on Windows Summary: When using libfuzzer on Windows, in the contents of a crash sample, bytes that can be mistaken for a \n are replaced by a \r\n sequence. As a consequence, crashes are not reproducible. This patch will open files in binary mode to fix this issue. The patch does not affect POSIX systems. Patch by tuktuk Reviewers: kcc, vitalybuka Reviewed By: vitalybuka Subscribers: dexonsmith, jdoerfert, llvm-commits, #sanitizers Tags: #llvm, #sanitizers Differential Revision: https://reviews.llvm.org/D60008 llvm-svn: 357807