Remove fuzzer for osx
Against all odds, all of this code compiles on osx.... except fuzzing.
Disable fuzzing temporarily if we're on darwin, given there's some
subtleties around detecting whether or not fuzzing is allowed.
[1] https://stackoverflow.com/questions/76115746/libclang-rt-fuzzer-osx-a-is-not-found-on-macos
Change-Id: I4ec0ee76c703cbe1cb0a1cda5da3565d02d457d9
Signed-off-by: Ed Tanous <etanous@nvidia.com>
diff --git a/tests/meson.build b/tests/meson.build
index 6a4d16c..accce38 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -59,10 +59,15 @@
],
)
test('test-cper-tests', cper_tests)
+
cxx = meson.get_compiler('cpp')
-if (cxx.get_id() == 'clang') and get_option('fuzz').allowed()
+
+# Fuzzing only works on linux at this moment. osx clang doesn't have leak detector
+is_darwin = host_machine.system().startswith('darwin')
+if (cxx.get_id() == 'clang') and get_option('fuzz').allowed() and not is_darwin
+ sanitize = ['fuzzer', 'address', 'leak']
fuzz_args = [
- '-fsanitize=fuzzer,address,leak',
+ '-fsanitize=' + ','.join(sanitize),
'-DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION',
]