Closed
Conversation
utbot-framework-api/src/main/kotlin/org/utbot/framework/UtSettings.kt
Outdated
Show resolved
Hide resolved
| val (methods, className) = ReadAction.nonBlocking<Pair<List<ExecutableId>, String?>> { | ||
| val canonicalName = srcClass.canonicalName | ||
| // todo how bad is it? | ||
| val clazz = classLoader.loadClass(canonicalName).kotlin |
Member
There was a problem hiding this comment.
It won't allow running project with JDK-17 on IDEA with JDK-11.
Member
Member
|
Also one more bug found by @Markoutte : |
Markoutte
reviewed
Sep 28, 2022
utbot-framework/src/main/kotlin/org/utbot/framework/process/generated/.rdgen
Outdated
Show resolved
Hide resolved
Markoutte
reviewed
Sep 28, 2022
utbot-instrumentation/src/main/kotlin/org/utbot/instrumentation/process/ChildProcess.kt
Outdated
Show resolved
Hide resolved
Member
|
Found issue: |
Moved engine process out of the main idea process. Changes include: 1. Reactive settings 2. Removing all JDK9+ api calls to support out-of-the process execution on JDK8 3. Refactored client protocol initialization, ClientProcessBuilder introduced 4. Big refactoring
simple fixes
logs for ci, commit will be reverted
deadlock fix
more jdk api fixes
removed reflexion, proxied all reflection calls to another process, some fixes, removed test generation report, sarif generation proxied to another process, fixed logs
enabled test generation report, optimized kryo serialization - UtMethodTestCase no more send to main process, access it through testSetsId
f376b1a to
ef7a1ab
Compare
4d0c8f0 to
067da31
Compare
Collaborator
Author
|
rolling to #1067 |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.


Moved engine process out of the main idea process. Changes include:
Type of Change