Lines Matching refs:execute
48 def execute(command, print_command=True, print_output=False, print_error=True, param_shell=True):
51 popen = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=param_shell, cwd=execute.cwd)
65 execute.cwd = None
70 execute(command, verbose, False, False)
82 execute('mutt -s "' + topic + '" ' + emails + ' < ' + logFileName, verbose)
84 execute('mail -s "' + topic + '" ' + emails + ' < ' + logFileName, verbose)
98 execute('mutt -s "' + email_topic + '" ' + args.emails + ' -a ' + results_files
101 execute('mail -s "' + email_topic + '" ' + args.emails + ' < ' + logFileName)
107 execute('git fetch -p', verbose)
108 branches = execute('git branch -rl', verbose)
119 commits = execute('git log -n 10 %s %s' % (fmt, commit))
121 commits = execute('git --no-pager log %s %s..%s' % (fmt, last_commit, commit))
155 result = execute('programs/%s -rqi5b1e%s %s' % (executableName, args.lastCLevel, testFilePath), print_output=True)
207 execute('make -C programs clean lz4 CC=clang MOREFLAGS="-Werror -Wconversion -Wno-sign-conversion -DLZ4_GIT_COMMIT=%s" && ' % version +
276 clang_version = execute("clang -v 2>&1 | grep 'clang version' | sed -e 's:.*version \\([0-9.]*\\).*:\\1:' -e 's:\\.\\([0-9][0-9]\\):\\1:g'", verbose)[0];
277 gcc_version = execute("gcc -dumpversion", verbose)[0];
300 execute.cwd = working_path
301 execute('git clone ' + args.repoURL)
305 execute.cwd = clone_path
332 commit = execute('git show -s --format=%h ' + branch, verbose)[0]
338 execute('git checkout -- . && git checkout ' + branch)