From 33909a77e026799be2f28bf01accd8064baba59d Mon Sep 17 00:00:00 2001 From: Daniel Berlin Date: Sat, 4 Mar 2017 03:23:41 +0000 Subject: [PATCH] Fix bug in bisect-skip-count not using passed-in arguments llvm-svn: 296961 --- utils/bisect-skip-count | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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