Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 321865f

Browse files
committedNov 29, 2022
New seed selection strategy and time budget for generation
1 parent cd11d9c commit 321865f

File tree

101 files changed

+790
-722
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+790
-722
lines changed
 

‎utbot-framework/src/main/kotlin/org/utbot/engine/UtBotSymbolicEngine.kt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,12 @@ class UtBotSymbolicEngine(
537537
}
538538

539539
try {
540-
GreyBoxFuzzer(concreteExecutor.pathsToUserClasses, concreteExecutor.pathsToDependencyClasses, methodUnderTest).fuzz()
540+
GreyBoxFuzzer(
541+
concreteExecutor.pathsToUserClasses,
542+
concreteExecutor.pathsToDependencyClasses,
543+
methodUnderTest,
544+
120_000L
545+
).fuzz()
541546
} catch (e: CancellationException) {
542547
logger.debug { "Cancelled by timeout" }
543548
} catch (e: Throwable) {

‎utbot-framework/src/main/kotlin/org/utbot/engine/greyboxfuzzer/GreyBoxFuzzer.kt

Lines changed: 108 additions & 137 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.