mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 22:00:10 +00:00
Fix bug in bisect-skip-count not using passed-in arguments
llvm-svn: 296961
This commit is contained in:
parent
8524cbaa57
commit
392da4bc49
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user