Fix bug in bisect-skip-count not using passed-in arguments
llvm-svn: 296961
diff --git a/llvm/utils/bisect-skip-count b/llvm/utils/bisect-skip-count
index ee7f0dc..b18b4f4 100755
--- a/llvm/utils/bisect-skip-count
+++ b/llvm/utils/bisect-skip-count
@@ -61,7 +61,7 @@
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