summaryrefslogtreecommitdiffstats
path: root/llvm/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
commit392da4bc49b7d7dfe42bfe530b7ca73a5688e75b (patch)
treed09233a65a70951f94412cbe710b6420437e320e /llvm/utils/bisect-skip-count
parent8524cbaa5741d9a44c93fdbcdaf34b674df90855 (diff)
downloadbcm5719-llvm-392da4bc49b7d7dfe42bfe530b7ca73a5688e75b.tar.gz
bcm5719-llvm-392da4bc49b7d7dfe42bfe530b7ca73a5688e75b.zip
Fix bug in bisect-skip-count not using passed-in arguments
llvm-svn: 296961
Diffstat (limited to 'llvm/utils/bisect-skip-count')
-rwxr-xr-xllvm/utils/bisect-skip-count2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/bisect-skip-count b/llvm/utils/bisect-skip-count
index ee7f0dc2609..b18b4f41481 100755
--- a/llvm/utils/bisect-skip-count
+++ b/llvm/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
OpenPOWER on IntegriCloud