aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/buildgen
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-01-19 13:03:46 -0800
committerGravatar Craig Tiller <ctiller@google.com>2016-01-19 13:03:46 -0800
commit590105ac53b3f211bcbfd88476590270d1499bf4 (patch)
tree0958d28c43fc8ab2c671b352ae2bba6d72316f78 /tools/buildgen
parentee36bce8810fc55fb7fd8905b840faceb09b8d3c (diff)
Eliminate jobset timeouts in some circumstances
There are cases where we truly don't care how long something takes, and some external timeout will kill truly stuck processes, so let's eliminate timeouts in those cases
Diffstat (limited to 'tools/buildgen')
-rwxr-xr-xtools/buildgen/generate_projects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildgen/generate_projects.py b/tools/buildgen/generate_projects.py
index 34437b9c8d..c2d71747e9 100755
--- a/tools/buildgen/generate_projects.py
+++ b/tools/buildgen/generate_projects.py
@@ -85,7 +85,7 @@ for template in templates:
os.close(tf[0])
cmd.append(test[out])
cmd.append(root + '/' + f)
- jobs.append(jobset.JobSpec(cmd, shortname=out))
+ jobs.append(jobset.JobSpec(cmd, shortname=out, timeout_seconds=None))
jobset.run(jobs, maxjobs=multiprocessing.cpu_count())