summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClark Williams <williams@redhat.com>2010-08-23 14:56:29 -0500
committerClark Williams <williams@redhat.com>2010-08-23 14:56:29 -0500
commit3baf352def895250481b6000c910589e9fd15931 (patch)
treef3cabab35859fa3d2d0fac077dc02b168e20e4e1
parent05de2e2bc368c14ad2e3b72de1db9a0233767c45 (diff)
downloadrteval-3baf352def895250481b6000c910589e9fd15931.tar.gz
rteval-3baf352def895250481b6000c910589e9fd15931.tar.xz
rteval-3baf352def895250481b6000c910589e9fd15931.zip
version bump to v1.32
Signed-off-by: Clark Williams <williams@redhat.com>
-rw-r--r--rteval.spec14
-rw-r--r--rteval/rteval.py2
-rw-r--r--setup.py2
3 files changed, 15 insertions, 3 deletions
diff --git a/rteval.spec b/rteval.spec
index a2f07fd..6b1c4d0 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.31
+Version: 1.32
Release: 1%{?dist}
Summary: Utility to evaluate system suitability for RT Linux
@@ -71,6 +71,18 @@ rm -rf $RPM_BUILD_ROOT
/usr/bin/rteval
%changelog
+* Mon Aug 23 2010 Clark Williams <williams@redhat.com> - 1.32-1
+- update docs
+- refactor some RTEval methods to utility functions
+- modify hackbench.py not to run under low memory conditions
+- clean up XML generation to deal with new hackbench code
+- clean up XSL code to deal with new XML 'run' attribute
+- from David Sommerseth <davids@redhat.com>:
+ - improve CPU socket counting logic
+ - delay log directory creation until actually needed
+- from Gowrishankar <gowrishankar.m@in.ibm.com>:
+ - check if the core id really exists (multithreading fix)
+
* Mon Jul 26 2010 Clark Williams <williams@redhat.com> - 1.31-1
- from David Sommerseth <davids@redhat.com>:
- Updated hackbench implementation to avoid overusing resources
diff --git a/rteval/rteval.py b/rteval/rteval.py
index a34b47a..ac865e5 100644
--- a/rteval/rteval.py
+++ b/rteval/rteval.py
@@ -70,7 +70,7 @@ def sigint_handler(signum, frame):
class RtEval(object):
def __init__(self, cmdargs):
- self.version = "1.31"
+ self.version = "1.32"
self.load_modules = []
self.workdir = os.getcwd()
self.reportdir = os.getcwd()
diff --git a/setup.py b/setup.py
index 4b04970..18f5e15 100644
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ import os
PYTHONLIB = join(get_python_lib(standard_lib=1, prefix=''), 'site-packages')
setup(name="rteval",
- version = "1.8",
+ version = "1.32",
description = "evaluate system performance for Realtime",
author = "Clark Williams",
author_email = "williams@redhat.com",