-
Notifications
You must be signed in to change notification settings - Fork 21
fix: Java E2E pipeline — direct JVM benchmarking, JUnit detection, and instrumentation fixes #1580
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
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
cdc2a4b
fix: JUnit version detection for multi-module Maven projects
mashraf-222 06382ea
fix: Add path caching for test file resolution in benchmarks
mashraf-222 c7b4534
fix: Handle complex expressions in Java test instrumentation
mashraf-222 90afeda
fix: Direct JVM execution for multi-module Maven projects
mashraf-222 54e0b38
fix: set perf_stdout for Java performance tests to fix throughput cal…
mashraf-222 0001fb5
fix: store actual test method name in SQLite for Java behavior tests
mashraf-222 6220ace
chore: auto-format lint fixes from pre-commit
mashraf-222 6113bac
fix: add JUnit Console Standalone to classpath for direct JVM execution
mashraf-222 a3f5943
fix: cache TestConfig.test_framework to avoid repeated pom.xml parsing
mashraf-222 bb6f38f
fix: detect JUnit version from classpath strings instead of subproces…
mashraf-222 d860857
fix: JUnit version detection for multi-module Maven projects
mashraf-222 b6564e6
style: auto-fix linting issues
github-actions[bot] cfcbd92
fix: correct JUnit version logging for projects using ConsoleLauncher…
mashraf-222 d54aa68
Apply suggestion from @claude[bot]
misrasaurabh1 53528a2
style: auto-fix linting issues
github-actions[bot] b8ec235
fix: resolve mypy type errors in Java config and instrumentation
github-actions[bot] 58561c8
coverage reported correctly
misrasaurabh1 8a1ab8e
fix pr creation bug
misrasaurabh1 96d94cd
Optimize _add_behavior_instrumentation
codeflash-ai[bot] 864f87f
style: merge multiple comparisons per PLR1714
github-actions[bot] 648a613
Optimize _add_timing_instrumentation
codeflash-ai[bot] a523c9a
style: auto-fix linting issues
github-actions[bot] 75762bd
Optimize _is_inside_lambda
codeflash-ai[bot] 2c0e1d9
Optimize _byte_to_line_index
codeflash-ai[bot] 4294601
style: auto-fix linting issues
github-actions[bot] 06dfb96
fix: implement Java process_review methods to prevent crash after opt…
mashraf-222 f06acba
fix: add test method name to Java stdout markers for unique identific…
mashraf-222 d4add61
fix: clear test file path cache between optimization iterations in --…
mashraf-222 38d6309
chore: log debug message when JUnitCore ignores reports_dir parameter
mashraf-222 5346cab
style: auto-fix linting issues
github-actions[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
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.
✅ Resolved — the recursion is now bounded to specific hardcoded directory names (["test", "tests", "src/test", "testing"]) with early break on first match. Practical recursion depth is at most 1 level.