-
Notifications
You must be signed in to change notification settings - Fork 20
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
Jest support: List fuzz test names #606
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank for the PR! It seems it's too small. 5 lines -> 5 comments, 500 lines -> LGTM 😅
Could you please add an integration test checking that the expected test names are actually printed?
e29c26d
to
e6eb745
Compare
e6eb745
to
6c30c36
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thx!
Come to think of it, this breaks with our plan to support all settings via environment variables, CLI parameters and configuration file entries. As it's a quite specific use-case IMHO it's ok to only support env vars here.
… set Futhermore will filter the list by regex if 'JAZZER_LIST_FUZZTEST_NAMES_PATTERN' is set.
6c30c36
to
d79d871
Compare
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@jazzer.js/core](https://togithub.com/CodeIntelligenceTesting/jazzer.js) | [`2.0.0` -> `2.1.0`](https://renovatebot.com/diffs/npm/@jazzer.js%2fcore/2.0.0/2.1.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@jazzer.js%2fcore/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@jazzer.js%2fcore/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@jazzer.js%2fcore/2.0.0/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@jazzer.js%2fcore/2.0.0/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>CodeIntelligenceTesting/jazzer.js (@​jazzer.js/core)</summary> ### [`v2.1.0`](https://togithub.com/CodeIntelligenceTesting/jazzer.js/releases/tag/v2.1.0): Release 2.1.0 [Compare Source](https://togithub.com/CodeIntelligenceTesting/jazzer.js/compare/v2.0.0...v2.1.0) <!-- Release notes generated using configuration in .github/release.yml at main --> #### What's Changed - **Feature**: Jest support: List fuzz test names by [@​zgtm](https://togithub.com/zgtm) in [CodeIntelligenceTesting/jazzer.js#606 - **Feature**: Handle real segfaults in fuzz targets by [@​br-lewis](https://togithub.com/br-lewis) in [CodeIntelligenceTesting/jazzer.js#602 - **Feature**: Provide consistent exit codes by [@​bertschneider](https://togithub.com/bertschneider) in [CodeIntelligenceTesting/jazzer.js#617 - **Bugfix**: Patch coverage of implicit else branches by [@​bertschneider](https://togithub.com/bertschneider) in [CodeIntelligenceTesting/jazzer.js#635 **Full Changelog**: CodeIntelligenceTesting/jazzer.js@v2.0.0...v2.1.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/xmldom/xmldom). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMS41IiwidXBkYXRlZEluVmVyIjoiMzcuMzEuNSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@jazzer.js/jest-runner](https://togithub.com/CodeIntelligenceTesting/jazzer.js) | [`2.0.0` -> `2.1.0`](https://renovatebot.com/diffs/npm/@jazzer.js%2fjest-runner/2.0.0/2.1.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@jazzer.js%2fjest-runner/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@jazzer.js%2fjest-runner/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@jazzer.js%2fjest-runner/2.0.0/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@jazzer.js%2fjest-runner/2.0.0/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>CodeIntelligenceTesting/jazzer.js (@​jazzer.js/jest-runner)</summary> ### [`v2.1.0`](https://togithub.com/CodeIntelligenceTesting/jazzer.js/releases/tag/v2.1.0): Release 2.1.0 [Compare Source](https://togithub.com/CodeIntelligenceTesting/jazzer.js/compare/v2.0.0...v2.1.0) <!-- Release notes generated using configuration in .github/release.yml at main --> #### What's Changed - **Feature**: Jest support: List fuzz test names by [@​zgtm](https://togithub.com/zgtm) in [CodeIntelligenceTesting/jazzer.js#606 - **Feature**: Handle real segfaults in fuzz targets by [@​br-lewis](https://togithub.com/br-lewis) in [CodeIntelligenceTesting/jazzer.js#602 - **Feature**: Provide consistent exit codes by [@​bertschneider](https://togithub.com/bertschneider) in [CodeIntelligenceTesting/jazzer.js#617 - **Bugfix**: Patch coverage of implicit else branches by [@​bertschneider](https://togithub.com/bertschneider) in [CodeIntelligenceTesting/jazzer.js#635 **Full Changelog**: CodeIntelligenceTesting/jazzer.js@v2.0.0...v2.1.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/xmldom/xmldom). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMS41IiwidXBkYXRlZEluVmVyIjoiMzcuMzEuNSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Lists fuzz test names if
JAZZER_LIST_FUZZTEST_NAMES
is set. Futhermore, will filter the list by regex ifJAZZER_LIST_FUZZTEST_NAMES_PATTERN
is set.