Skip to content

Commit efdf9ef

Browse files
committed
Remove test generation for timeouts
1 parent d624f95 commit efdf9ef

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -417,19 +417,7 @@ class FuzzingEngine(
417417
}
418418

419419
is PythonEvaluationTimeout -> {
420-
val coveredInstructions =
421-
manager.coverageReceiver.coverageStorage.getOrDefault(coverageId, mutableListOf())
422-
val utTimeoutException = handleTimeoutResult(arguments, description, coveredInstructions)
423-
val trieNode: Trie.Node<PyInstruction> =
424-
if (coveredInstructions.isEmpty())
425-
Trie.emptyNode()
426-
else
427-
description.tracer.add(coveredInstructions)
428-
description.limitManager.addInvalidExecution()
429-
PythonExecutionResult(
430-
utTimeoutException,
431-
PythonFeedback(control = Control.PASS, result = trieNode, SuccessFeedback)
432-
)
420+
null
433421
}
434422

435423
is PythonEvaluationSuccess -> {

0 commit comments

Comments
 (0)