File tree Expand file tree Collapse file tree 1 file changed +1
-13
lines changed
utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing Expand file tree Collapse file tree 1 file changed +1
-13
lines changed Original file line number Diff line number Diff 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 -> {
You can’t perform that action at this time.
0 commit comments