@@ -20,7 +20,7 @@ private const val defaultKeyForSettingsPath = "utbot.settings.path"
2020/* *
2121 * Default concrete execution timeout (in milliseconds).
2222 */
23- const val DEFAULT_CONCRETE_EXECUTION_TIMEOUT_IN_INSTRUMENTED_PROCESS_MS = 1000L
23+ const val DEFAULT_EXECUTION_TIMEOUT_IN_INSTRUMENTED_PROCESS_MS = 1000L
2424
2525object UtSettings : AbstractSettings(
2626 logger, defaultKeyForSettingsPath, defaultSettingsPath
@@ -261,7 +261,7 @@ object UtSettings : AbstractSettings(
261261 * Timeout for specific concrete execution (in milliseconds).
262262 */
263263 var concreteExecutionTimeoutInInstrumentedProcess: Long by getLongProperty(
264- DEFAULT_CONCRETE_EXECUTION_TIMEOUT_IN_INSTRUMENTED_PROCESS_MS
264+ DEFAULT_EXECUTION_TIMEOUT_IN_INSTRUMENTED_PROCESS_MS
265265 )
266266
267267// region engine process debug
@@ -274,35 +274,39 @@ object UtSettings : AbstractSettings(
274274 var engineProcessLogConfigFile by getStringProperty(" " )
275275
276276 /* *
277- * Property useful only for idea
278- * If true - runs engine process with the ability to attach a debugger
277+ * The property is useful only for the IntelliJ IDEs.
278+ * If the property is set in true the engine process opens a debug port.
279279 * @see runInstrumentedProcessWithDebug
280280 * @see org.utbot.intellij.plugin.process.EngineProcess
281281 */
282282 var runEngineProcessWithDebug by getBooleanProperty(false )
283283
284284 /* *
285- * Port which will be used for debugging engine process
285+ * The engine process JDWP agent's port of the instrumented process.
286+ * A debugger attaches to the port in order to debug the process.
286287 */
287288 var engineProcessDebugPort by getIntProperty(5005 )
288289
289290 /* *
290- * Whether engine process should suspend until debugger attached
291+ * Value of the suspend mode for the JDWP agent of the engine process.
292+ * If the value is true, the engine process will suspend until a debugger attaches to it.
291293 */
292- var engineProcessDebugSuspendPolicy by getBooleanProperty(true )
294+ var suspendEngineProcessExecutionInDebugMode by getBooleanProperty(true )
293295
294296// endregion
295297
296298// region instrumented process debug
297299 /* *
298- * Port which will be used for debugging instrumented process
300+ * The instrumented process JDWP agent's port of the instrumented process.
301+ * A debugger attaches to the port in order to debug the process.
299302 */
300303 var instrumentedProcessDebugPort by getIntProperty(5006 )
301304
302305 /* *
303- * Whether instrumented process should suspend until debugger attached
306+ * Value of the suspend mode for the JDWP agent of the instrumented process.
307+ * If the value is true, the instrumented process will suspend until a debugger attaches to it.
304308 */
305- var instrumentedProcessSuspendPolicy by getBooleanProperty(true )
309+ var suspendInstrumentedProcessExecutionInDebugMode by getBooleanProperty(true )
306310
307311 /* *
308312 * If true, runs the instrumented process with the ability to attach a debugger.
0 commit comments