From 3227ad11ec457c3dad062db548432d2a1c837d50 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 8 Nov 2023 06:58:50 +0100 Subject: [PATCH] Add `regresssion_samples` explanation (#1230) --- Tests/Fuzzers/RegressionTests/README.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Tests/Fuzzers/RegressionTests/README.md diff --git a/Tests/Fuzzers/RegressionTests/README.md b/Tests/Fuzzers/RegressionTests/README.md new file mode 100644 index 0000000000..8e4f884977 --- /dev/null +++ b/Tests/Fuzzers/RegressionTests/README.md @@ -0,0 +1,4 @@ +The files in `regression_samples` are basically pcap files (not necessarily valid ones) that triggered crashes in the past. +Since the issues are fixed they don't trigger the crashes anymore. +On every pull request an [ASAN](https://clang.llvm.org/docs/AddressSanitizer.html)/[USAN](https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html)/[MSAN](https://clang.llvm.org/docs/MemorySanitizer.html) instrumented build opens all of them one by one. +If there is a crash - the pull request introduced memory corruption.