diff options
author | Clark Williams <williams@redhat.com> | 2012-01-12 14:42:10 -0600 |
---|---|---|
committer | Clark Williams <williams@redhat.com> | 2012-01-12 14:42:10 -0600 |
commit | 998d1d29b42ba0e2e767bf2feaa47fb7aa5818c9 (patch) | |
tree | 4a922245df15de853815714ded191177e3ac18e1 | |
parent | fa1758387eff03d47c9049d8efcd5eabef622f55 (diff) | |
download | rteval-998d1d29b42ba0e2e767bf2feaa47fb7aa5818c9.tar.gz rteval-998d1d29b42ba0e2e767bf2feaa47fb7aa5818c9.tar.xz rteval-998d1d29b42ba0e2e767bf2feaa47fb7aa5818c9.zip |
version bump to 1.34
Signed-off-by: Clark Williams <williams@redhat.com>
-rw-r--r-- | rteval.spec | 7 | ||||
-rw-r--r-- | rteval/rteval.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/rteval.spec b/rteval.spec index 949f840..6eb46a8 100644 --- a/rteval.spec +++ b/rteval.spec @@ -2,7 +2,7 @@ %{!?python_ver: %define python_ver %(%{__python} -c "import sys ; print sys.version[:3]")} Name: rteval -Version: 1.33 +Version: 1.34 Release: 1%{?dist} Summary: Utility to evaluate system suitability for RT Linux @@ -71,6 +71,11 @@ rm -rf $RPM_BUILD_ROOT /usr/bin/rteval %changelog +* Mon Jan 12 2012 Clark Williams <williams@redhat.com> - 1.34-1 +- fix missing config merge in rteval.py to pass parameters + down to cyclictest +- modify hackbench to use helper function to start process + * Sat May 14 2011 Clark Williams <williams@redhat.com> - 1.33-1 - modify hackbench cutoff to be 0.75GB/core diff --git a/rteval/rteval.py b/rteval/rteval.py index 3e2120d..8fc9973 100644 --- a/rteval/rteval.py +++ b/rteval/rteval.py @@ -74,7 +74,7 @@ def sigterm_handler(signum, frame): class RtEval(object): def __init__(self, cmdargs): - self.version = "1.33" + self.version = "1.34" self.load_modules = [] self.workdir = os.getcwd() self.reportdir = os.getcwd() @@ -9,7 +9,7 @@ import os PYTHONLIB = join(get_python_lib(standard_lib=1, prefix=''), 'site-packages') setup(name="rteval", - version = "1.32", + version = "1.34", description = "evaluate system performance for Realtime", author = "Clark Williams", author_email = "williams@redhat.com", |