Merge remote-tracking branch 'refs/remotes/origin/speedTest' into dev
commit
9649126f70
|
@ -42,6 +42,12 @@
|
||||||
/* *************************************
|
/* *************************************
|
||||||
* Constants
|
* Constants
|
||||||
***************************************/
|
***************************************/
|
||||||
|
#ifndef ZSTD_GIT_COMMIT
|
||||||
|
# define ZSTD_GIT_COMMIT_STRING ""
|
||||||
|
#else
|
||||||
|
# define ZSTD_GIT_COMMIT_STRING ZSTD_EXPAND_AND_QUOTE(ZSTD_GIT_COMMIT)
|
||||||
|
#endif
|
||||||
|
|
||||||
#define NBLOOPS 3
|
#define NBLOOPS 3
|
||||||
#define TIMELOOP_MICROSEC 1*1000000ULL /* 1 second */
|
#define TIMELOOP_MICROSEC 1*1000000ULL /* 1 second */
|
||||||
#define ACTIVEPERIOD_MICROSEC 70*1000000ULL /* 70 seconds */
|
#define ACTIVEPERIOD_MICROSEC 70*1000000ULL /* 70 seconds */
|
||||||
|
@ -359,7 +365,7 @@ static void BMK_benchCLevel(void* srcBuffer, size_t benchedSize,
|
||||||
memset(&total, 0, sizeof(total));
|
memset(&total, 0, sizeof(total));
|
||||||
|
|
||||||
if (g_displayLevel == 1 && !g_additionalParam)
|
if (g_displayLevel == 1 && !g_additionalParam)
|
||||||
DISPLAY("bench %s: input %u bytes, %i iterations, %u KB blocks\n", ZSTD_VERSION_STRING, (U32)benchedSize, g_nbIterations, (U32)(g_blockSize>>10));
|
DISPLAY("bench %s %s: input %u bytes, %i iterations, %u KB blocks\n", ZSTD_VERSION_STRING, ZSTD_GIT_COMMIT_STRING, (U32)benchedSize, g_nbIterations, (U32)(g_blockSize>>10));
|
||||||
|
|
||||||
if (cLevelLast < cLevel) cLevelLast = cLevel;
|
if (cLevelLast < cLevel) cLevelLast = cLevel;
|
||||||
|
|
||||||
|
|
|
@ -1,37 +1,38 @@
|
||||||
#! /usr/bin/env python
|
#! /usr/bin/env python
|
||||||
# execute(), fetch(), notify() are based on https://github.com/getlantern/build-automation/blob/master/build.py
|
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import os
|
import os
|
||||||
import string
|
import string
|
||||||
import time
|
import time
|
||||||
import traceback
|
import traceback
|
||||||
from subprocess import Popen, PIPE
|
import subprocess
|
||||||
|
import signal
|
||||||
|
|
||||||
|
|
||||||
default_repo_url = 'https://github.com/Cyan4973/zstd.git'
|
default_repo_url = 'https://github.com/Cyan4973/zstd.git'
|
||||||
test_dir_name = 'speedTest'
|
working_dir_name = 'speedTest'
|
||||||
|
working_path = os.getcwd() + '/' + working_dir_name # /path/to/zstd/tests/speedTest
|
||||||
|
clone_path = working_path + '/' + 'zstd' # /path/to/zstd/tests/speedTest/zstd
|
||||||
email_header = '[ZSTD_speedTest]'
|
email_header = '[ZSTD_speedTest]'
|
||||||
|
pid = str(os.getpid())
|
||||||
|
|
||||||
|
|
||||||
def log(text):
|
def log(text):
|
||||||
print time.strftime("%Y/%m/%d %H:%M:%S") + ' - ' + text
|
print(time.strftime("%Y/%m/%d %H:%M:%S") + ' - ' + text)
|
||||||
|
|
||||||
def execute(command, print_output=False, print_error=True):
|
|
||||||
|
def execute(command, print_output=False, print_error=True, param_shell=True):
|
||||||
log("> " + command)
|
log("> " + command)
|
||||||
popen = Popen(command, stdout=PIPE, stderr=PIPE, shell=True, cwd=execute.cwd)
|
popen = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=param_shell, cwd=execute.cwd)
|
||||||
itout = iter(popen.stdout.readline, b"")
|
stdout = popen.communicate()[0]
|
||||||
iterr = iter(popen.stderr.readline, b"")
|
stdout_lines = stdout.splitlines()
|
||||||
stdout_lines = list(itout)
|
|
||||||
if print_output:
|
if print_output:
|
||||||
print ''.join(stdout_lines)
|
print('\n'.join(stdout_lines))
|
||||||
stderr_lines = list(iterr)
|
|
||||||
if print_output:
|
|
||||||
print ''.join(stderr_lines)
|
|
||||||
popen.communicate()
|
|
||||||
if popen.returncode is not None and popen.returncode != 0:
|
if popen.returncode is not None and popen.returncode != 0:
|
||||||
if not print_output and print_error:
|
if not print_output and print_error:
|
||||||
print ''.join(stderr_lines)
|
print('\n'.join(stdout_lines))
|
||||||
raise RuntimeError(''.join(stderr_lines))
|
raise RuntimeError('\n'.join(stdout_lines))
|
||||||
return stdout_lines + stderr_lines
|
return stdout_lines
|
||||||
execute.cwd = None
|
execute.cwd = None
|
||||||
|
|
||||||
|
|
||||||
|
@ -43,39 +44,61 @@ def does_command_exist(command):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def fetch():
|
def send_email(emails, topic, text, have_mutt, have_mail):
|
||||||
|
logFileName = working_path + '/' + 'tmpEmailContent'
|
||||||
|
with open(logFileName, "w") as myfile:
|
||||||
|
myfile.writelines(text)
|
||||||
|
myfile.close()
|
||||||
|
if have_mutt:
|
||||||
|
execute('mutt -s "' + topic + '" ' + emails + ' < ' + logFileName)
|
||||||
|
elif have_mail:
|
||||||
|
execute('mail -s "' + topic + '" ' + emails + ' < ' + logFileName)
|
||||||
|
else:
|
||||||
|
log("e-mail cannot be sent (mail or mutt not found)")
|
||||||
|
|
||||||
|
|
||||||
|
def send_email_with_attachments(branch, commit, last_commit, emails, text, results_files, logFileName, lower_limit, have_mutt, have_mail):
|
||||||
|
with open(logFileName, "w") as myfile:
|
||||||
|
myfile.writelines(text)
|
||||||
|
myfile.close()
|
||||||
|
email_topic = '%s:%s Warning for %s:%s last_commit=%s speed<%s' % (email_header, pid, branch, commit, last_commit, lower_limit)
|
||||||
|
if have_mutt:
|
||||||
|
execute('mutt -s "' + email_topic + '" ' + emails + ' -a ' + results_files + ' < ' + logFileName)
|
||||||
|
elif have_mail:
|
||||||
|
execute('mail -s "' + email_topic + '" ' + emails + ' < ' + logFileName)
|
||||||
|
else:
|
||||||
|
log("e-mail cannot be sent (mail or mutt not found)")
|
||||||
|
|
||||||
|
|
||||||
|
def git_get_branches():
|
||||||
execute('git fetch -p')
|
execute('git fetch -p')
|
||||||
output = execute('git branch -rl')
|
output = execute('git branch -rl')
|
||||||
for line in output:
|
for line in output:
|
||||||
if "HEAD" in line:
|
if "HEAD" in line:
|
||||||
output.remove(line) # remove "origin/HEAD -> origin/dev"
|
output.remove(line) # remove "origin/HEAD -> origin/dev"
|
||||||
branches = map(lambda l: l.strip(), output)
|
return map(lambda l: l.strip(), output)
|
||||||
return map(lambda b: (b, execute('git show -s --format=%h ' + b)[0].strip()), branches)
|
|
||||||
|
|
||||||
|
|
||||||
def notify(branch, commit, last_commit):
|
def git_get_changes(branch, commit, last_commit):
|
||||||
text_tmpl = string.Template('Changes since $last_commit:\r\n$commits')
|
|
||||||
branch = branch.split('/')[1]
|
|
||||||
fmt = '--format="%h: (%an) %s, %ar"'
|
fmt = '--format="%h: (%an) %s, %ar"'
|
||||||
if last_commit is None:
|
if last_commit is None:
|
||||||
commits = execute('git log -n 10 %s %s' % (fmt, commit))
|
commits = execute('git log -n 10 %s %s' % (fmt, commit))
|
||||||
else:
|
else:
|
||||||
commits = execute('git --no-pager log %s %s..%s' % (fmt, last_commit, commit))
|
commits = execute('git --no-pager log %s %s..%s' % (fmt, last_commit, commit))
|
||||||
|
return str('Changes in %s since %s:\n' % (branch, last_commit)) + '\n'.join(commits)
|
||||||
text = text_tmpl.substitute({'last_commit': last_commit, 'commits': ''.join(commits)})
|
|
||||||
print str("commits for %s: %s" % (commit, text))
|
|
||||||
|
|
||||||
|
|
||||||
def compile(branch, commit, dry_run):
|
def compile(branch, commit, last_commit, dry_run):
|
||||||
local_branch = string.split(branch, '/')[1]
|
local_branch = string.split(branch, '/')[1]
|
||||||
version = local_branch.rpartition('-')[2]
|
version = local_branch.rpartition('-')[2]
|
||||||
version = version + '_' + commit
|
version = version + '_' + commit
|
||||||
execute('git checkout -- . && git checkout ' + branch)
|
execute('git checkout -- . && git checkout ' + branch)
|
||||||
|
print(git_get_changes(branch, commit, last_commit))
|
||||||
if not dry_run:
|
if not dry_run:
|
||||||
execute('VERSION=' + version + '; make clean zstdprogram')
|
execute('make clean zstdprogram MOREFLAGS="-DZSTD_GIT_COMMIT=%s"' % version)
|
||||||
|
|
||||||
|
|
||||||
def get_last_commit(resultsFileName):
|
def get_last_results(resultsFileName):
|
||||||
if not os.path.isfile(resultsFileName):
|
if not os.path.isfile(resultsFileName):
|
||||||
return None, None, None
|
return None, None, None
|
||||||
commit = None
|
commit = None
|
||||||
|
@ -84,15 +107,13 @@ def get_last_commit(resultsFileName):
|
||||||
with open(resultsFileName,'r') as f:
|
with open(resultsFileName,'r') as f:
|
||||||
for line in f:
|
for line in f:
|
||||||
words = line.split()
|
words = line.split()
|
||||||
if len(words) == 2: # branch + commit
|
if len(words) == 2: # branch + commit
|
||||||
commit = words[1];
|
commit = words[1];
|
||||||
cspeed = []
|
cspeed = []
|
||||||
dspeed = []
|
dspeed = []
|
||||||
if (len(words) == 8):
|
if (len(words) == 8): # results
|
||||||
cspeed.append(float(words[3]))
|
cspeed.append(float(words[3]))
|
||||||
dspeed.append(float(words[5]))
|
dspeed.append(float(words[5]))
|
||||||
#if commit != None:
|
|
||||||
# print "commit=%s cspeed=%s dspeed=%s" % (commit, cspeed, dspeed)
|
|
||||||
return commit, cspeed, dspeed
|
return commit, cspeed, dspeed
|
||||||
|
|
||||||
|
|
||||||
|
@ -102,89 +123,69 @@ def benchmark_and_compare(branch, commit, resultsFileName, lastCLevel, testFileP
|
||||||
log("WARNING: bench loadavg=%.2f is higher than %s, sleeping for %s seconds" % (os.getloadavg()[0], maxLoadAvg, sleepTime))
|
log("WARNING: bench loadavg=%.2f is higher than %s, sleeping for %s seconds" % (os.getloadavg()[0], maxLoadAvg, sleepTime))
|
||||||
time.sleep(sleepTime)
|
time.sleep(sleepTime)
|
||||||
start_load = str(os.getloadavg())
|
start_load = str(os.getloadavg())
|
||||||
result = execute('programs/zstd -qi5b1e' + str(lastCLevel) + ' ' + testFilePath)
|
result = execute('programs/zstd -qi5b1e' + str(lastCLevel) + ' ' + testFilePath, print_output=True)
|
||||||
end_load = str(os.getloadavg())
|
end_load = str(os.getloadavg())
|
||||||
linesExpected = lastCLevel + 2;
|
linesExpected = lastCLevel + 2;
|
||||||
if len(result) != linesExpected:
|
if len(result) != linesExpected:
|
||||||
log("ERROR: number of result lines=%d is different that expected %d" % (len(result), linesExpected))
|
raise RuntimeError("ERROR: number of result lines=%d is different that expected %d\n%s" % (len(result), linesExpected, '\n'.join(result)))
|
||||||
return ""
|
|
||||||
with open(resultsFileName, "a") as myfile:
|
with open(resultsFileName, "a") as myfile:
|
||||||
myfile.write(branch + " " + commit + "\n")
|
myfile.write(branch + " " + commit + "\n")
|
||||||
myfile.writelines(result)
|
myfile.write('\n'.join(result) + '\n')
|
||||||
myfile.close()
|
myfile.close()
|
||||||
if (last_cspeed == None):
|
if (last_cspeed == None):
|
||||||
|
log("WARNING: No data for comparison for branch=%s file=%s " % (branch, fileName))
|
||||||
return ""
|
return ""
|
||||||
commit, cspeed, dspeed = get_last_commit(resultsFileName)
|
commit, cspeed, dspeed = get_last_results(resultsFileName)
|
||||||
text = ""
|
text = ""
|
||||||
for i in range(0, min(len(cspeed), len(last_cspeed))):
|
for i in range(0, min(len(cspeed), len(last_cspeed))):
|
||||||
|
print("%s:%s -%d cspeed=%6.2f clast=%6.2f cdiff=%1.4f dspeed=%6.2f dlast=%6.2f ddiff=%1.4f %s" % (branch, commit, i+1, cspeed[i], last_cspeed[i], cspeed[i]/last_cspeed[i], dspeed[i], last_dspeed[i], dspeed[i]/last_dspeed[i], fileName))
|
||||||
if (cspeed[i]/last_cspeed[i] < lower_limit):
|
if (cspeed[i]/last_cspeed[i] < lower_limit):
|
||||||
text += "WARNING: File=%s level=%d cspeed=%s last=%s diff=%s\n" % (fileName, i+1, cspeed[i], last_cspeed[i], cspeed[i]/last_cspeed[i])
|
text += "WARNING: -%d cspeed=%.2f clast=%.2f cdiff=%.4f %s\n" % (i+1, cspeed[i], last_cspeed[i], cspeed[i]/last_cspeed[i], fileName)
|
||||||
if (dspeed[i]/last_dspeed[i] < lower_limit):
|
if (dspeed[i]/last_dspeed[i] < lower_limit):
|
||||||
text += "WARNING: File=%s level=%d dspeed=%s last=%s diff=%s\n" % (fileName, i+1, dspeed[i], last_dspeed[i], dspeed[i]/last_dspeed[i])
|
text += "WARNING: -%d dspeed=%.2f dlast=%.2f ddiff=%.4f %s\n" % (i+1, dspeed[i], last_dspeed[i], dspeed[i]/last_dspeed[i], fileName)
|
||||||
if text:
|
if text:
|
||||||
text = message + ("\nmaxLoadAvg=%s load average at start=%s end=%s\n" % (maxLoadAvg, start_load, end_load)) + text
|
text = message + ("\nmaxLoadAvg=%s load average at start=%s end=%s\n" % (maxLoadAvg, start_load, end_load)) + text
|
||||||
return text
|
return text
|
||||||
|
|
||||||
|
|
||||||
def send_simple_email(emails, email_topic, have_mutt, have_mail):
|
def check_commit(branch, commit, args, testFilePaths, have_mutt, have_mail):
|
||||||
if have_mutt:
|
try:
|
||||||
execute('mutt -s "' + email_header + ' ' + email_topic + '" ' + emails + ' </dev/null')
|
last_commit = None
|
||||||
elif have_mail:
|
commitFileName = working_path + "/commit_" + branch.replace("/", "_")
|
||||||
execute('mail -s "' + email_header + ' ' + email_topic + '" ' + emails + ' </dev/null')
|
if os.path.isfile(commitFileName):
|
||||||
else:
|
last_commit = file(commitFileName, 'r').read()
|
||||||
log("e-mail cannot be sent (mail and mutt not found)")
|
file(commitFileName, 'w').write(commit)
|
||||||
|
|
||||||
|
if commit == last_commit:
|
||||||
|
log("skipping branch %s: head %s already processed" % (branch, commit))
|
||||||
|
return
|
||||||
|
|
||||||
def send_email(branch, commit, last_commit, emails, text, results_files, logFileName, lower_limit, have_mutt, have_mail):
|
log("build branch %s: head %s is different from prev %s" % (branch, commit, last_commit))
|
||||||
with open(logFileName, "w") as myfile:
|
compile(branch, commit, last_commit, args.dry_run)
|
||||||
myfile.writelines(text)
|
|
||||||
myfile.close()
|
|
||||||
if have_mutt:
|
|
||||||
execute('mutt -s "' + email_header + ' Warning for branch=' + branch + ' commit=' + commit + ' last_commit=' + last_commit + ' speed<' + str(lower_limit) + '" ' + emails + ' -a ' + results_files + ' < ' + logFileName)
|
|
||||||
elif have_mail:
|
|
||||||
execute('mail -s "' + email_header + ' Warning for branch=' + branch + ' commit=' + commit + ' last_commit=' + last_commit + ' speed<' + str(lower_limit) + '" ' + emails + ' < ' + logFileName)
|
|
||||||
else:
|
|
||||||
log("e-mail cannot be sent (mail and mutt not found)")
|
|
||||||
|
|
||||||
|
logFileName = working_path + "/log_" + branch.replace("/", "_")
|
||||||
|
text_to_send = []
|
||||||
|
results_files = ""
|
||||||
|
for filePath in testFilePaths:
|
||||||
|
fileName = filePath.rpartition('/')[2]
|
||||||
|
resultsFileName = working_path + "/results_" + branch.replace("/", "_") + "_" + fileName
|
||||||
|
last_commit, cspeed, dspeed = get_last_results(resultsFileName)
|
||||||
|
|
||||||
def check_branches(args, test_path, testFilePaths, have_mutt, have_mail):
|
if not args.dry_run:
|
||||||
for branch, commit in fetch():
|
text = benchmark_and_compare(branch, commit, resultsFileName, args.lastCLevel, filePath, fileName, cspeed, dspeed, args.lowerLimit, args.maxLoadAvg, args.message)
|
||||||
try:
|
if text:
|
||||||
commitFileName = test_path + "/commit_" + branch.replace("/", "_")
|
log("WARNING: redoing tests for branch %s: commit %s" % (branch, commit))
|
||||||
if os.path.isfile(commitFileName):
|
text = benchmark_and_compare(branch, commit, resultsFileName, args.lastCLevel, filePath, fileName, cspeed, dspeed, args.lowerLimit, args.maxLoadAvg, args.message)
|
||||||
last_commit = file(commitFileName, 'r').read()
|
if text:
|
||||||
else:
|
text_to_send.append(text)
|
||||||
last_commit = None
|
results_files += resultsFileName + " "
|
||||||
file(commitFileName, 'w').write(commit)
|
if text_to_send:
|
||||||
|
send_email_with_attachments(branch, commit, last_commit, args.emails, text_to_send, results_files, logFileName, args.lowerLimit, have_mutt, have_mail)
|
||||||
if commit == last_commit:
|
except Exception as e:
|
||||||
log("skipping branch %s: head %s already processed" % (branch, commit))
|
stack = traceback.format_exc()
|
||||||
else:
|
email_topic = '%s:%s ERROR in %s:%s' % (email_header, pid, branch, commit)
|
||||||
log("build branch %s: head %s is different from prev %s" % (branch, commit, last_commit))
|
send_email(args.emails, email_topic, stack, have_mutt, have_mail)
|
||||||
compile(branch, commit, args.dry_run)
|
print(stack)
|
||||||
|
|
||||||
logFileName = test_path + "/log_" + branch.replace("/", "_")
|
|
||||||
text_to_send = []
|
|
||||||
results_files = ""
|
|
||||||
for filePath in testFilePaths:
|
|
||||||
fileName = filePath.rpartition('/')[2]
|
|
||||||
resultsFileName = test_path + "/results_" + branch.replace("/", "_") + "_" + fileName
|
|
||||||
last_commit, cspeed, dspeed = get_last_commit(resultsFileName)
|
|
||||||
|
|
||||||
if not args.dry_run:
|
|
||||||
text = benchmark_and_compare(branch, commit, resultsFileName, args.lastCLevel, filePath, fileName, cspeed, dspeed, args.lowerLimit, args.maxLoadAvg, args.message)
|
|
||||||
if text:
|
|
||||||
text = benchmark_and_compare(branch, commit, resultsFileName, args.lastCLevel, filePath, fileName, cspeed, dspeed, args.lowerLimit, args.maxLoadAvg, args.message)
|
|
||||||
if text:
|
|
||||||
text_to_send.append(text)
|
|
||||||
results_files += resultsFileName + " "
|
|
||||||
if text_to_send:
|
|
||||||
send_email(branch, commit, last_commit, args.emails, text_to_send, results_files, logFileName, args.lowerLimit, have_mutt, have_mail)
|
|
||||||
notify(branch, commit, last_commit)
|
|
||||||
except Exception as e:
|
|
||||||
stack = traceback.format_exc()
|
|
||||||
log("ERROR: build %s, error %s" % (branch, str(e)) )
|
|
||||||
print stack
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
@ -210,34 +211,31 @@ if __name__ == '__main__':
|
||||||
log("ERROR: File not found: " + fileName)
|
log("ERROR: File not found: " + fileName)
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
test_path = os.getcwd() + '/' + test_dir_name # /path/to/zstd/tests/speedTest
|
|
||||||
clone_path = test_path + '/' + 'zstd' # /path/to/zstd/tests/speedTest/zstd
|
|
||||||
|
|
||||||
# check availability of e-mail senders
|
# check availability of e-mail senders
|
||||||
have_mutt = does_command_exist("mutt --help");
|
have_mutt = does_command_exist("mutt -h");
|
||||||
have_mail = does_command_exist("mail -V");
|
have_mail = does_command_exist("mail -V");
|
||||||
if not have_mutt and not have_mail:
|
if not have_mutt and not have_mail:
|
||||||
log("ERROR: e-mail senders 'mail' or 'mutt' not found")
|
log("ERROR: e-mail senders 'mail' or 'mutt' not found")
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
print "PARAMETERS:\nrepoURL=%s" % args.repoURL
|
print("PARAMETERS:\nrepoURL=%s" % args.repoURL)
|
||||||
print "test_path=%s" % test_path
|
print("working_path=%s" % working_path)
|
||||||
print "clone_path=%s" % clone_path
|
print("clone_path=%s" % clone_path)
|
||||||
print "testFilePath(%s)=%s" % (len(testFilePaths), testFilePaths)
|
print("testFilePath(%s)=%s" % (len(testFilePaths), testFilePaths))
|
||||||
print "message=%s" % args.message
|
print("message=%s" % args.message)
|
||||||
print "emails=%s" % args.emails
|
print("emails=%s" % args.emails)
|
||||||
print "maxLoadAvg=%s" % args.maxLoadAvg
|
print("maxLoadAvg=%s" % args.maxLoadAvg)
|
||||||
print "lowerLimit=%s" % args.lowerLimit
|
print("lowerLimit=%s" % args.lowerLimit)
|
||||||
print "lastCLevel=%s" % args.lastCLevel
|
print("lastCLevel=%s" % args.lastCLevel)
|
||||||
print "sleepTime=%s" % args.sleepTime
|
print("sleepTime=%s" % args.sleepTime)
|
||||||
print "dry_run=%s" % args.dry_run
|
print("dry_run=%s" % args.dry_run)
|
||||||
print "have_mutt=%s have_mail=%s" % (have_mutt, have_mail)
|
print("have_mutt=%s have_mail=%s" % (have_mutt, have_mail))
|
||||||
|
|
||||||
# clone ZSTD repo if needed
|
# clone ZSTD repo if needed
|
||||||
if not os.path.isdir(test_path):
|
if not os.path.isdir(working_path):
|
||||||
os.mkdir(test_path)
|
os.mkdir(working_path)
|
||||||
if not os.path.isdir(clone_path):
|
if not os.path.isdir(clone_path):
|
||||||
execute.cwd = test_path
|
execute.cwd = working_path
|
||||||
execute('git clone ' + args.repoURL)
|
execute('git clone ' + args.repoURL)
|
||||||
if not os.path.isdir(clone_path):
|
if not os.path.isdir(clone_path):
|
||||||
log("ERROR: ZSTD clone not found: " + clone_path)
|
log("ERROR: ZSTD clone not found: " + clone_path)
|
||||||
|
@ -245,22 +243,28 @@ if __name__ == '__main__':
|
||||||
execute.cwd = clone_path
|
execute.cwd = clone_path
|
||||||
|
|
||||||
# check if speedTest.pid already exists
|
# check if speedTest.pid already exists
|
||||||
pid = str(os.getpid())
|
|
||||||
pidfile = "./speedTest.pid"
|
pidfile = "./speedTest.pid"
|
||||||
if os.path.isfile(pidfile):
|
if os.path.isfile(pidfile):
|
||||||
log("ERROR: %s already exists, exiting" % pidfile)
|
log("ERROR: %s already exists, exiting" % pidfile)
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
send_simple_email(args.emails, "test-zstd-speed.py(%s) has been started" % pid, have_mutt, have_mail)
|
send_email(args.emails, email_header + ':%s test-zstd-speed.py has been started' % pid, '', have_mutt, have_mail)
|
||||||
|
file(pidfile, 'w').write(pid)
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
file(pidfile, 'w').write(pid)
|
|
||||||
try:
|
try:
|
||||||
loadavg = os.getloadavg()[0]
|
loadavg = os.getloadavg()[0]
|
||||||
if (loadavg <= args.maxLoadAvg):
|
if (loadavg <= args.maxLoadAvg):
|
||||||
check_branches(args, test_path, testFilePaths, have_mutt, have_mail)
|
branches = git_get_branches()
|
||||||
|
for branch in branches:
|
||||||
|
commits = execute('git show -s --format=%h ' + branch)[0]
|
||||||
|
for commit in [commits]:
|
||||||
|
check_commit(branch, commit, args, testFilePaths, have_mutt, have_mail)
|
||||||
else:
|
else:
|
||||||
log("WARNING: main loadavg=%.2f is higher than %s" % (loadavg, args.maxLoadAvg))
|
log("WARNING: main loadavg=%.2f is higher than %s" % (loadavg, args.maxLoadAvg))
|
||||||
finally:
|
log("sleep for %s seconds" % args.sleepTime)
|
||||||
|
time.sleep(args.sleepTime)
|
||||||
|
except KeyboardInterrupt:
|
||||||
os.unlink(pidfile)
|
os.unlink(pidfile)
|
||||||
log("sleep for %s seconds" % args.sleepTime)
|
send_email(args.emails, email_header + ':%s test-zstd-speed.py has been stopped' % pid, '', have_mutt, have_mail)
|
||||||
time.sleep(args.sleepTime)
|
exit(0)
|
||||||
|
|
Loading…
Reference in New Issue