mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-24 22:30:13 +00:00
24568789c4
Summary: Enable tests on Windows and make check-fuzzer pass on it. Make check-fuzzer pass on Windows by fixing libFuzzer, fixing tests, and by disabling tests on Windows. Most of these are disabled temporarily as support for the tests and the features they test will be added incrementally. Other tests will not be enabled since they require things that are not on Windows (eg: afl_driver tests). Every test that was explicitly disabled on Windows has a comment explaining why (unless obvious like merge-posix.test). The lit.cfg file was modified to support running tests on windows. fuzzer-dirs.test was fixed by making the Windows implementation print the same error message as the posix version. merge-control-file.test was fixed by making the test binary end with the ".exe" extension (on all platforms). Patch By: metzman Reviewers: morehouse Reviewed By: morehouse Subscribers: srhines, mgorny Differential Revision: https://reviews.llvm.org/D51549 llvm-svn: 341385
16 lines
639 B
Plaintext
16 lines
639 B
Plaintext
# AFL doesn't work on Windows. No reason to test the driver.
|
|
UNSUPPORTED: freebsd, windows
|
|
XFAIL: ios
|
|
RUN: %no_fuzzer_cpp_compiler %S/AFLDriverTest.cpp %libfuzzer_src/afl/afl_driver.cpp -o %t-AFLDriverTest
|
|
|
|
; Test that not specifying a stderr file isn't broken.
|
|
RUN: unset AFL_DRIVER_STDERR_DUPLICATE_FILENAME
|
|
RUN: %run %t-AFLDriverTest
|
|
|
|
; Test that specifying an invalid file causes a crash.
|
|
RUN: ASAN_OPTIONS= AFL_DRIVER_STDERR_DUPLICATE_FILENAME="%T" not --crash %run %t-AFLDriverTest
|
|
|
|
; Test that a file is created when specified as the duplicate stderr.
|
|
RUN: AFL_DRIVER_STDERR_DUPLICATE_FILENAME=%t %run %t-AFLDriverTest
|
|
RUN: stat %t
|