aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClark Williams <williams@redhat.com>2015-11-20 16:19:06 -0600
committerClark Williams <williams@redhat.com>2015-11-20 16:19:06 -0600
commit2597e254856b7b6e518689d9b907fc403329987e (patch)
treea9978756907253a43a03fa7e0b4852cb4510f4e0
parentfa2ad146cff9703297fd750644447a89295fc7e2 (diff)
downloadrteval-2597e254856b7b6e518689d9b907fc403329987e.tar.gz
update to v1.39v1.39
Signed-off-by: Clark Williams <williams@redhat.com>
-rw-r--r--rteval.spec5
-rw-r--r--rteval/rteval.py2
-rw-r--r--setup.py2
3 files changed, 6 insertions, 3 deletions
diff --git a/rteval.spec b/rteval.spec
index 61be348..e5dcade 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.38
+Version: 1.39
Release: 1%{?dist}
Summary: Utility to evaluate system suitability for RT Linux
@@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT
/usr/bin/rteval
%changelog
+* Fri Nov 20 2015 Clark Williams <williams@redhat.com> - 1.39-1
+- hackbench: modify to avoid cross-node NUMA copies
+
* Tue Sep 17 2013 Clark Williams <williams@redhat.com> - 1.38-1
- cleaned up incorrect usage of percent signs in changelog
- added data validation checks to histogram parsing code
diff --git a/rteval/rteval.py b/rteval/rteval.py
index 43db442..141fa20 100644
--- a/rteval/rteval.py
+++ b/rteval/rteval.py
@@ -94,7 +94,7 @@ def sigterm_handler(signum, frame):
class RtEval(object):
def __init__(self, cmdargs):
- self.version = "1.38"
+ self.version = "1.39"
self.load_modules = []
self.workdir = os.getcwd()
self.reportdir = os.getcwd()
diff --git a/setup.py b/setup.py
index 487629e..887731e 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.38",
+ version = "1.39",
description = "evaluate system performance for Realtime",
author = "Clark Williams",
author_email = "williams@redhat.com",