File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
utbot-framework/src/main/kotlin/org/utbot/framework/codegen
utbot-framework-api/src/main/kotlin/org/utbot/framework
utbot-sample/src/main/java/org/utbot/examples/exceptions Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ internal class SettingDelegate<T>(val initializer: () -> T) {
31
31
/* *
32
32
* Default concrete execution timeout (in milliseconds).
33
33
*/
34
- const val DEFAULT_CONCRETE_EXECUTION_TIMEOUT_IN_CHILD_PROCESS_MS = 100L
34
+ const val DEFAULT_CONCRETE_EXECUTION_TIMEOUT_IN_CHILD_PROCESS_MS = 1000L
35
35
36
36
object UtSettings {
37
37
private val properties = Properties ().also { props ->
Original file line number Diff line number Diff line change @@ -490,7 +490,7 @@ data class HangingTestsTimeout(val timeoutMs: Long) {
490
490
491
491
companion object {
492
492
const val DEFAULT_TIMEOUT_MS = DEFAULT_CONCRETE_EXECUTION_TIMEOUT_IN_CHILD_PROCESS_MS
493
- const val MIN_TIMEOUT_MS = DEFAULT_CONCRETE_EXECUTION_TIMEOUT_IN_CHILD_PROCESS_MS
493
+ const val MIN_TIMEOUT_MS = 100L
494
494
const val MAX_TIMEOUT_MS = 1_000_000L
495
495
}
496
496
}
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public int differentExceptionsInNestedCall(int i) throws MyCheckedException {
20
20
}
21
21
22
22
public int sleepingMoreThanDefaultTimeout (int i ) throws InterruptedException {
23
- Thread .sleep (500L );
23
+ Thread .sleep (1500L );
24
24
25
25
if (i < 0 ) {
26
26
throw new RuntimeException ();
You can’t perform that action at this time.
0 commit comments