-
Notifications
You must be signed in to change notification settings - Fork 437
Move jtregJdk11 test to jtreg directory. #7606
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,8 +1,8 @@ | ||||||
| /* | ||||||
| * @test | ||||||
| * @summary Test that --release 8 does not cause a crash. | ||||||
| * @summary Test that --release 9 does not cause a crash. | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Summary now contradicts the test’s actual release target. Line 3 says Suggested fix- * `@summary` Test that --release 9 does not cause a crash.
+ * `@summary` Test that --release 8 does not cause a crash.Based on learnings: In the Checker Framework repository, when doing refactoring PRs, test files should remain stable and not be changed unless necessary. 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| * | ||||||
| * @compile -processor org.checkerframework.checker.interning.InterningChecker Jdk11Release8.java --release 8 | ||||||
| * @compile -processor org.checkerframework.checker.interning.InterningChecker Jdk11Release9.java --release 9 | ||||||
| */ | ||||||
|
|
||||||
| public class Jdk11Release8 {} | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Critical: Class name must match filename. The class name 🐛 Proposed fix-public class Jdk11Release8 {}
+public class Jdk11Release9 {}📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.