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

Ignore testing.runFuzzing and testing.runFuzzTests #105

Merged
merged 1 commit into from
Jun 28, 2023

Commits on Jun 27, 2023

  1. Ignore testing.runFuzzing and testing.runFuzzTests

    When Fuzz testing, if the `-fuzz` flag is used then the fuzzing engine
    is used to generate test cases out of the seed corpus, this causes
    `testing.runFuzzTests` to be blocked until a failing input is found or
    there is a signal to stop generating.
    On the other hand `testing.runFuzzTests` is called even without the use
    of the `-fuzz` flag, executes the input testing with all the elements
    in the seed corpus and it's blocked until every test has run.
    
    On both cases, goleak detects them as leaking goroutines, but this are
    expected goroutines.
    
    Internal Ref: GO-2002
    Fix uber-go#104
    EstebanOlmedo committed Jun 27, 2023
    Configuration menu
    Copy the full SHA
    06ae223 View commit details
    Browse the repository at this point in the history