diff options
| author | Daniel Berlin <dberlin@dberlin.org> | 2017-03-04 03:23:41 +0000 |
|---|---|---|
| committer | Daniel Berlin <dberlin@dberlin.org> | 2017-03-04 03:23:41 +0000 |
| commit | 392da4bc49b7d7dfe42bfe530b7ca73a5688e75b (patch) | |
| tree | d09233a65a70951f94412cbe710b6420437e320e /llvm/utils/bisect-skip-count | |
| parent | 8524cbaa5741d9a44c93fdbcdaf34b674df90855 (diff) | |
| download | bcm5719-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-x | llvm/utils/bisect-skip-count | 2 |
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 |

