From e6976a8ede6a2ba01b5e84ee8f147c596c0aef20 Mon Sep 17 00:00:00 2001 From: daniellerozenblit <48103643+daniellerozenblit@users.noreply.github.com> Date: Fri, 20 Jan 2023 17:07:18 -0500 Subject: [PATCH] Enable 32-bit mode in oss-fuzz for zstd We'd like to enable 32-bit mode fuzz tests for zstd for portability and to catch bugs such as this one (https://github.com/facebook/zstd/pull/3361) that only occur when built in 32-bit mode. Is there anything else that needs to be done to enable 32-bit fuzzing for zstd? --- projects/zstd/project.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/projects/zstd/project.yaml b/projects/zstd/project.yaml index 0a27d53d6814..b3f9c6d3714e 100644 --- a/projects/zstd/project.yaml +++ b/projects/zstd/project.yaml @@ -31,4 +31,7 @@ sanitizers: - address - memory - undefined +architectures: + - x86_64 + - i386 main_repo: 'https://github.com/facebook/zstd'