summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClark Williams <williams@redhat.com>2009-08-11 11:37:44 -0500
committerClark Williams <williams@redhat.com>2009-08-11 11:37:44 -0500
commitd1977c9eec29802e54780172908b20787db88614 (patch)
tree69966284735f5813ae4fbf97f198995e2f4daf81
parent99508c3e5d6f3e65154acbb11d4c021e946c67c7 (diff)
downloadrteval-d1977c9eec29802e54780172908b20787db88614.tar.gz
rteval-d1977c9eec29802e54780172908b20787db88614.tar.xz
rteval-d1977c9eec29802e54780172908b20787db88614.zip
updated copyright, licensing and version info
-rw-r--r--rteval/__init__.py2
-rw-r--r--rteval/cyclictest.py25
-rw-r--r--rteval/dmi.py25
-rw-r--r--rteval/hackbench.py26
-rw-r--r--rteval/kcompile.py23
-rw-r--r--rteval/load.py23
-rw-r--r--rteval/rteval.py25
-rw-r--r--rteval/xmlout.py23
-rw-r--r--setup.py2
9 files changed, 171 insertions, 3 deletions
diff --git a/rteval/__init__.py b/rteval/__init__.py
index ce0242b..ffc62f7 100644
--- a/rteval/__init__.py
+++ b/rteval/__init__.py
@@ -1,5 +1,5 @@
"""
-Copyright (c) 2008 Red Hat Inc.
+Copyright (c) 2008,2009 Red Hat Inc.
Realtime verification utility
"""
diff --git a/rteval/cyclictest.py b/rteval/cyclictest.py
index 1aafa91..8c2f62c 100644
--- a/rteval/cyclictest.py
+++ b/rteval/cyclictest.py
@@ -1,4 +1,29 @@
#!/usr/bin/python -tt
+#
+# cyclictest.py - object to manage a cyclictest executable instance
+#
+# Copyright 2009 Clark Williams <williams@redhat.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+# For the avoidance of doubt the "preferred form" of this code is one which
+# is in an open unpatent encumbered format. Where cryptographic key signing
+# forms part of the process of creating an executable the information
+# including keys needed to generate an equivalently functional executable
+# are deemed to be part of the source code.
+#
import os
import sys
diff --git a/rteval/dmi.py b/rteval/dmi.py
index 552f61d..57c714d 100644
--- a/rteval/dmi.py
+++ b/rteval/dmi.py
@@ -1,4 +1,29 @@
#!/usr/bin/python -tt
+#
+# dmi.py - class to wrap DMI Table information
+#
+# Copyright 2009 Clark Williams <williams@redhat.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+# For the avoidance of doubt the "preferred form" of this code is one which
+# is in an open unpatent encumbered format. Where cryptographic key signing
+# forms part of the process of creating an executable the information
+# including keys needed to generate an equivalently functional executable
+# are deemed to be part of the source code.
+#
import sys
import os
diff --git a/rteval/hackbench.py b/rteval/hackbench.py
index 8f9b19c..2ce08ef 100644
--- a/rteval/hackbench.py
+++ b/rteval/hackbench.py
@@ -1,3 +1,29 @@
+#
+# hackbench.py - class to manage an instance of hackbench load
+#
+# Copyright 2009 Clark Williams <williams@redhat.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+# For the avoidance of doubt the "preferred form" of this code is one which
+# is in an open unpatent encumbered format. Where cryptographic key signing
+# forms part of the process of creating an executable the information
+# including keys needed to generate an equivalently functional executable
+# are deemed to be part of the source code.
+#
+
import sys
import os
import time
diff --git a/rteval/kcompile.py b/rteval/kcompile.py
index 2657c9b..fdd1d74 100644
--- a/rteval/kcompile.py
+++ b/rteval/kcompile.py
@@ -1,3 +1,26 @@
+#
+# Copyright 2009 Clark Williams <williams@redhat.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+# For the avoidance of doubt the "preferred form" of this code is one which
+# is in an open unpatent encumbered format. Where cryptographic key signing
+# forms part of the process of creating an executable the information
+# including keys needed to generate an equivalently functional executable
+# are deemed to be part of the source code.
+#
import sys
import os
import time
diff --git a/rteval/load.py b/rteval/load.py
index 681ee88..76dbaf9 100644
--- a/rteval/load.py
+++ b/rteval/load.py
@@ -1,4 +1,27 @@
#!/usr/bin/python -tt
+#
+# Copyright 2009 Clark Williams <williams@redhat.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+# For the avoidance of doubt the "preferred form" of this code is one which
+# is in an open unpatent encumbered format. Where cryptographic key signing
+# forms part of the process of creating an executable the information
+# including keys needed to generate an equivalently functional executable
+# are deemed to be part of the source code.
+#
import sys
import os
diff --git a/rteval/rteval.py b/rteval/rteval.py
index ee52e19..504a7fd 100644
--- a/rteval/rteval.py
+++ b/rteval/rteval.py
@@ -1,12 +1,35 @@
#!/usr/bin/python -tt
#
-# rteval - script for evaluating platform suitability for RT Linux
+# rteval - script for evaluating platform suitability for RT Linux
#
# This program is used to determine the suitability of
# a system for use in a Real Time Linux environment.
# It starts up various system loads and measures event
# latency while the loads are running. A report is generated
# to show the latencies encountered during the run.
+#
+# Copyright 2009 Clark Williams <williams@redhat.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+# For the avoidance of doubt the "preferred form" of this code is one which
+# is in an open unpatent encumbered format. Where cryptographic key signing
+# forms part of the process of creating an executable the information
+# including keys needed to generate an equivalently functional executable
+# are deemed to be part of the source code.
+#
import sys
import os
diff --git a/rteval/xmlout.py b/rteval/xmlout.py
index a17206f..b4fe371 100644
--- a/rteval/xmlout.py
+++ b/rteval/xmlout.py
@@ -1,5 +1,28 @@
# -*- coding: utf-8 -*-
#!/usr/bin/python -tt
+#
+# Copyright 2009 Clark Williams <williams@redhat.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+# For the avoidance of doubt the "preferred form" of this code is one which
+# is in an open unpatent encumbered format. Where cryptographic key signing
+# forms part of the process of creating an executable the information
+# including keys needed to generate an equivalently functional executable
+# are deemed to be part of the source code.
+#
import os
import sys
import libxml2
diff --git a/setup.py b/setup.py
index 3bb42a5..1b8e2b3 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 = "0.6",
+ version = "0.9",
description = "evaluate system performance for Realtime",
author = "Clark Williams",
author_email = "williams@redhat.com",