Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default WITH_TEST_FUZZ to OFF #7695

Merged
merged 3 commits into from
Jul 26, 2023
Merged

Default WITH_TEST_FUZZ to OFF #7695

merged 3 commits into from
Jul 26, 2023

Conversation

steven-johnson
Copy link
Contributor

Just because our compiler supports fuzzing doesn't mean we want to build the fuzz tests, because they won't really build properly without the right preset specified.

(This will be followed up with a change to the buildbot to set WITH_TEST_FUZZ to ON for fuzz tests)

attn: @TH3CHARLie

Just because our compiler supports fuzzing doesn't mean we want to build the fuzz tests, because they won't really build properly without the right preset specified.

(This will be followed up with a change to the buildbot to set WITH_TEST_FUZZ to ON for fuzz tests)
@TH3CHARLie
Copy link
Contributor

TH3CHARLie commented Jul 20, 2023

want to add to the reasons for not enabling them by default, with fuzzer linked, whenever you call f.realize you will get something like this:

Internal Error at /home/xuanda/dev/Serializer/Halide/src/JITModule.cpp:226 triggered by user code at : Condition failed: addr: Failed to materialize symbols: { (main, { blur_y_metadata, blur_y, $.blur_y.__inits.0, __orc_init_func.blur_y, sancov.module_ctor_8bit_counters, blur_y_argv }) }

Not sure about the exact reason, but most likely because libfuzz will insert some kind of main into the code already.

steven-johnson added a commit to halide/build_bot that referenced this pull request Jul 20, 2023
* Always explicitly set WITH_TEST_FUZZ

Needed for halide/Halide#7695

* Update master.cfg
@steven-johnson
Copy link
Contributor Author

Monday morning review ping

Comment on lines +97 to +100
# Note that we want to default WITH_TEST_FUZZ to OFF, even if HAS_FUZZ_FLAGS
# is true: just because our compiler supports fuzzing doesn't mean we want to
# build the fuzz tests, because they won't really build properly without the
# right preset specified.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What doesn't work, exactly? The idea was that HAS_FUZZ_FLAGS was a sufficient condition on the environment for the fuzz tests to be expected to work. What is the true condition?

@steven-johnson
Copy link
Contributor Author

What doesn't work, exactly? The idea was that HAS_FUZZ_FLAGS was a sufficient condition on the environment for the fuzz tests to be expected to work. What is the true condition?

The fuzzer tests must be built using the linux-x64-fuzzer preset

@alexreinking
Copy link
Member

The fuzzer tests must be built using the linux-x64-fuzzer preset

That's kind of my question... why? What does the preset do that's special? The only non-standard thing I see is that it uses static Halide (so BUILD_SHARED_LIBS=OFF),

@TH3CHARLie
Copy link
Contributor

The fuzzer tests must be built using the linux-x64-fuzzer preset

That's kind of my question... why? What does the preset do that's special? The only non-standard thing I see is that it uses static Halide (so BUILD_SHARED_LIBS=OFF),

I believe it's the new flag making it special:

set(CMAKE_C_FLAGS_INIT "-fsanitize=fuzzer-no-link")
set(CMAKE_CXX_FLAGS_INIT "-fsanitize=fuzzer-no-link")
set(CMAKE_EXE_LINKER_FLAGS_INIT "-fuse-ld=${CMAKE_LINKER}")
set(CMAKE_MODULE_LINKER_FLAGS_INIT "-fuse-ld=${CMAKE_LINKER}")
set(CMAKE_SHARED_LINKER_FLAGS_INIT "-fuse-ld=${CMAKE_LINKER}")

@steven-johnson
Copy link
Contributor Author

Yep, -fsanitize=fuzzer-no-link dramatically affects codegen

@abadams
Copy link
Member

abadams commented Jul 25, 2023

e.g. it injects its own int main!

@steven-johnson steven-johnson merged commit 09c5d1d into main Jul 26, 2023
@steven-johnson steven-johnson deleted the srj/no-fuzzer-default branch July 26, 2023 22:25
ardier pushed a commit to ardier/Halide-mutation that referenced this pull request Mar 3, 2024
* Fix for top-of-tree LLVM

* Default WITH_TEST_FUZZ to OFF

Just because our compiler supports fuzzing doesn't mean we want to build the fuzz tests, because they won't really build properly without the right preset specified.

(This will be followed up with a change to the buildbot to set WITH_TEST_FUZZ to ON for fuzz tests)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants