summaryrefslogtreecommitdiff
path: root/utils/bisect-skip-count
diff options
context:
space:
mode:
authorDaniel Berlin <dberlin@dberlin.org>2017-03-04 03:23:41 +0000
committerDaniel Berlin <dberlin@dberlin.org>2017-03-04 03:23:41 +0000
commit82a036a26db090ba8e36374602b39a7706134cbe (patch)
treecdc53a8d40e9891743baadf0f1a66ba6c4534694 /utils/bisect-skip-count
parent81540f2b8d8fe1ffee65d080a352e7fef2cae0dd (diff)
Fix bug in bisect-skip-count not using passed-in arguments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@296961 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/bisect-skip-count')
-rwxr-xr-xutils/bisect-skip-count2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/bisect-skip-count b/utils/bisect-skip-count
index ee7f0dc2609..b18b4f41481 100755
--- a/utils/bisect-skip-count
+++ b/utils/bisect-skip-count
@@ -61,7 +61,7 @@ while start != end and start != end-1:
cmd = [x % {'count':count, 'skip':firstcount } for x in args.command]
print cmd
try:
- result = subprocess.call(cmd, shell=True, timeout=20)
+ result = subprocess.call(cmd, shell=args.shell, timeout=args.timeout)
if result == 0:
print(" PASSES! Setting start to count")
start = count