Skip to content

Commit

Permalink
Fix bug in bisect-skip-count not using passed-in arguments
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@296961 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
dberlin committed Mar 4, 2017
1 parent 81540f2 commit 82a036a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/bisect-skip-count
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 82a036a

Please sign in to comment.