Skip to content

Commit 9f43580

Browse files
authored
Change default generator timeout to infinite (#7718)
1 parent f54bc08 commit 9f43580

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Generator.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -668,8 +668,8 @@ gengen
668668
generation, such as `no_asserts` and `no_runtime`, are ignored.
669669
670670
-t Timeout for the Generator to run, in seconds; mainly useful to ensure that
671-
bugs and/or degenerate cases don't stall build systems. Defaults to 900
672-
(=15 minutes). Specify 0 to allow ~infinite time.
671+
bugs and/or degenerate cases don't stall build systems. Specify 0 to allow
672+
infinite time. Defaults to infinite.
673673
674674
-v If nonzero, log the path to all generated files to stdout.
675675
)INLINE_CODE";
@@ -684,7 +684,7 @@ gengen
684684
{"-p", ""},
685685
{"-r", ""},
686686
{"-v", "0"},
687-
{"-t", "900"}, // 15 minutes
687+
{"-t", "0"},
688688
};
689689

690690
ExecuteGeneratorArgs args;

0 commit comments

Comments
 (0)