[reprotest] 01/01: reprotest: pass kind='build' to check_exec so it doesn't time out after 100s

Ximin Luo infinity0 at debian.org
Thu Sep 22 16:35:22 UTC 2016


This is an automated email from the git hooks/post-receive script.

infinity0 pushed a commit to branch master
in repository reprotest.

commit 02119cb39e0c7c15ab1a83808f59c39c8ec2a70b
Author: Ximin Luo <infinity0 at debian.org>
Date:   Thu Sep 22 18:35:00 2016 +0200

    reprotest: pass kind='build' to check_exec so it doesn't time out after 100s
---
 reprotest/__init__.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/reprotest/__init__.py b/reprotest/__init__.py
index 8b65923..6f3ff57 100644
--- a/reprotest/__init__.py
+++ b/reprotest/__init__.py
@@ -296,7 +296,10 @@ def build(script, source_root, built_artifact, testbed, artifact_store, env):
     # new_script = new_script.append_cleanup(cd2)
     print(new_script)
     # exit_code, stdout, stderr = testbed.execute(['sh', '-ec', str(new_script)], xenv=[str(k) + '=' + str(v) for k, v in env.items()], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
-    testbed.check_exec(['sh', '-ec', str(new_script)], xenv=[str(k) + '=' + str(v) for k, v in env.items()])
+    testbed.check_exec(
+        ['sh', '-ec', str(new_script)],
+        xenv=[str(k) + '=' + str(v) for k, v in env.items()],
+        kind='build')
     # exit_code, stdout, stderr = testbed.execute(['lsof', source_root], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
     # print(exit_code, stdout, stderr)
     # testbed.execute(['ls', '-l', source_root])

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/reprotest.git



More information about the Reproducible-commits mailing list