Conversation
to be compatible with scenarios such as `make -j allmost`
|
All tests fixed. |
|
Actually, disabling fuzzing + msan seems more difficult than anticipated, |
|
I'll open an issue on oss-fuzz about the msan failure. |
|
It looks like |
I think it should be possible to remove "memory" from the "sanitizer" list to turn off only Msan there: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 0e14345..5e5aae1 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- sanitizer: [address, undefined, memory]
+ sanitizer: [address, undefined]
steps:
- name: Build Fuzzers (${{ matrix.sanitizer }})
id: buildThough I hope the issue will be fixed soon. |
|
That's a good point @evverx , |
to improve compatibility with parallel build scenarios such as
make -j allmost.Presumed to fix #2436