-
Notifications
You must be signed in to change notification settings - Fork 37
Fix instrumentation of newly loaded classes #525
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
10 commits
Select commit
Hold shift + click to select a range
ac60f69
support instrumentation of newly loaded classes (not only re-transfor…
eupp 560b3db
fix bug on Java 8 due to KT-16727
eupp 8487ca2
fix bug on Java 8 due to KT-16727 (patch)
eupp aec5b4f
minor
eupp 8aa4393
minor
eupp e6fb923
do not instrument loaded classes with `internalClassName == null`
eupp b108a0c
check if the list of classes is not empty before re-transforming them
eupp 57c36cf
add comment
eupp 9330599
added test for KT-16727 issue
eupp 08a8737
remove `<unknown>` objects counter in JVM 8 traces
eupp 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
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
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
28 changes: 28 additions & 0 deletions
28
src/jvm/test/resources/expected_logs/run_concurrent_test/anonymous_object.txt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
= Concurrent test failed = | ||
|
||
java.lang.IllegalStateException: Check failed. | ||
at org.jetbrains.kotlinx.lincheck_test.representation.AnonymousObjectRunConcurrentRepresentationTest.block(RunConcurrentRepresentationTests.kt:206) | ||
at org.jetbrains.kotlinx.lincheck_test.representation.AnonymousObjectRunConcurrentRepresentationTest.block(RunConcurrentRepresentationTests.kt:183) | ||
at org.jetbrains.kotlinx.lincheck_test.representation.BaseRunConcurrentRepresentationTest$testRunWithModelChecker$result$1$1.invoke(RunConcurrentRepresentationTests.kt:40) | ||
at java.base/java.lang.Thread.run(Thread.java:840) | ||
|
||
The following interleaving leads to the error: | ||
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| Thread 1 | | ||
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| AnonymousObjectRunConcurrentRepresentationTest#1.block(): threw IllegalStateException at BaseRunConcurrentRepresentationTest$testRunWithModelChecker$result$1$1.invoke(RunConcurrentRepresentationTests.kt:40) | | ||
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
|
||
Detailed trace: | ||
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| Thread 1 | | ||
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| AnonymousObjectRunConcurrentRepresentationTest#1.block(): threw IllegalStateException at BaseRunConcurrentRepresentationTest$testRunWithModelChecker$result$1$1.invoke(RunConcurrentRepresentationTests.kt:40) | | ||
| block(): threw IllegalStateException at AnonymousObjectRunConcurrentRepresentationTest.block(RunConcurrentRepresentationTests.kt:183) | | ||
| AnonymousObjectRunConcurrentRepresentationTest.runnable = test$1 at AnonymousObjectRunConcurrentRepresentationTest.block(RunConcurrentRepresentationTests.kt:204) | | ||
| AnonymousObjectRunConcurrentRepresentationTest.runnable ➜ test$1 at AnonymousObjectRunConcurrentRepresentationTest.block(RunConcurrentRepresentationTests.kt:205) | | ||
| test$1.run() at AnonymousObjectRunConcurrentRepresentationTest.block(RunConcurrentRepresentationTests.kt:205) | | ||
| AnonymousObjectRunConcurrentRepresentationTest.x ➜ 0 at AnonymousObjectRunConcurrentRepresentationTest$I$test$1.run(RunConcurrentRepresentationTests.kt:197) | | ||
| AnonymousObjectRunConcurrentRepresentationTest.x = 1 at AnonymousObjectRunConcurrentRepresentationTest$I$test$1.run(RunConcurrentRepresentationTests.kt:197) | | ||
| result: IllegalStateException #1 | | ||
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | |
28 changes: 28 additions & 0 deletions
28
src/jvm/test/resources/expected_logs/run_concurrent_test/anonymous_object_jdk8.txt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
= Concurrent test failed = | ||
|
||
java.lang.IllegalStateException: Check failed. | ||
at org.jetbrains.kotlinx.lincheck_test.representation.AnonymousObjectRunConcurrentRepresentationTest.block(RunConcurrentRepresentationTests.kt:206) | ||
at org.jetbrains.kotlinx.lincheck_test.representation.AnonymousObjectRunConcurrentRepresentationTest.block(RunConcurrentRepresentationTests.kt:183) | ||
at org.jetbrains.kotlinx.lincheck_test.representation.BaseRunConcurrentRepresentationTest$testRunWithModelChecker$result$1$1.invoke(RunConcurrentRepresentationTests.kt:40) | ||
at java.lang.Thread.run(Thread.java:750) | ||
|
||
The following interleaving leads to the error: | ||
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| Thread 1 | | ||
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| AnonymousObjectRunConcurrentRepresentationTest#1.block(): threw IllegalStateException at BaseRunConcurrentRepresentationTest$testRunWithModelChecker$result$1$1.invoke(RunConcurrentRepresentationTests.kt:40) | | ||
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
|
||
Detailed trace: | ||
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| Thread 1 | | ||
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| AnonymousObjectRunConcurrentRepresentationTest#1.block(): threw IllegalStateException at BaseRunConcurrentRepresentationTest$testRunWithModelChecker$result$1$1.invoke(RunConcurrentRepresentationTests.kt:40) | | ||
| block(): threw IllegalStateException at AnonymousObjectRunConcurrentRepresentationTest.block(RunConcurrentRepresentationTests.kt:183) | | ||
| AnonymousObjectRunConcurrentRepresentationTest.runnable = <unknown> at AnonymousObjectRunConcurrentRepresentationTest.block(RunConcurrentRepresentationTests.kt:204) | | ||
| AnonymousObjectRunConcurrentRepresentationTest.runnable ➜ <unknown> at AnonymousObjectRunConcurrentRepresentationTest.block(RunConcurrentRepresentationTests.kt:205) | | ||
| <unknown>.run() at AnonymousObjectRunConcurrentRepresentationTest.block(RunConcurrentRepresentationTests.kt:205) | | ||
| AnonymousObjectRunConcurrentRepresentationTest.x ➜ 0 at AnonymousObjectRunConcurrentRepresentationTest$I$test$1.run(RunConcurrentRepresentationTests.kt:197) | | ||
| AnonymousObjectRunConcurrentRepresentationTest.x = 1 at AnonymousObjectRunConcurrentRepresentationTest$I$test$1.run(RunConcurrentRepresentationTests.kt:197) | | ||
| result: IllegalStateException #1 | | ||
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | |
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.