We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c3aea7 commit 8360415Copy full SHA for 8360415
utbot-framework/src/main/kotlin/org/utbot/engine/UsvmSymbolicEngine.kt
@@ -64,6 +64,10 @@ object UsvmSymbolicEngine {
64
timeoutMillis: Long
65
): List<Pair<ExecutableId, UtResult>> {
66
67
+ if (timeoutMillis == 0L) {
68
+ return emptyList()
69
+ }
70
+
71
val collectedExecutions = mutableListOf<Pair<ExecutableId, UtResult>>()
72
val classpathFiles = classpath.split(File.pathSeparator).map { File(it) }
73
0 commit comments