]> rtime.felk.cvut.cz Git - can-benchmark.git/commitdiff
Minor, mostly cosmetic, changes to RTEMS bench scripts.
authorMartin Hořeňovský <Martin.Horenovsky@gmail.com>
Mon, 16 Sep 2013 14:20:26 +0000 (16:20 +0200)
committerMartin Hořeňovský <Martin.Horenovsky@gmail.com>
Mon, 16 Sep 2013 14:20:26 +0000 (16:20 +0200)
Updated docstrings, removed out of date comments, added some new ones.

gw-tests/lib.py
gw-tests/rtems_bench.py
gw-tests/tests.py

index 700eacb61d2cbbb470252e92cc55c0bc60ae0c85..4cccc2756ab79a918d5482c87c1b488cfc25d765 100644 (file)
@@ -1,3 +1,7 @@
+"""
+Contains various helper functions and information for benchmarking RTEMS CAN GW implementation.
+"""
+
 import subprocess
 import sys
 import os
 import subprocess
 import sys
 import os
@@ -152,4 +156,8 @@ def read_hostname():
 
 def original_name_from_histogram_name(hist_name):
     """Retuns name of the original test from the name of its histogram."""
 
 def original_name_from_histogram_name(hist_name):
     """Retuns name of the original test from the name of its histogram."""
-    return "-".join(hist_name.split("-")[:-1])
\ No newline at end of file
+    return "-".join(hist_name.split("-")[:-1])
+    
+def set_txqueuelen(length):
+    """Sets txqueuelen on can0 interface to given length"""
+    subprocess.call("ifconfig can0 txqueuelen {}".format(length).split())
index 51539b8dbad2bbf8e5ce3e783539df21a7687f37..e1b40ebcef51762d762edbace9eecca0c459e54c 100755 (executable)
@@ -4,14 +4,14 @@
 """
 Quick and dirty script to automate benchmarking ryu board with RTEMS on board.
 
 """
 Quick and dirty script to automate benchmarking ryu board with RTEMS on board.
 
-Should create the same directory structure as the shell scripts used when targeting linux,
-but only uses two tests (one actually, the second one is reinterpretation of the data of the first one.)
+Creates the same general directory structure and contents as do the shell scripts.
+
+Takes tests from tests.py (see its docstring for defining new tests) and relies on functions from lib.py
 
 Expects to be run from within the gw-tests directory and that the layout of boot files remains constant.
 """
 
 
 Expects to be run from within the gw-tests directory and that the layout of boot files remains constant.
 """
 
-import subprocess
-import sys, os, shutil, stat
+import os
 from time import sleep
 
 import tests
 from time import sleep
 
 import tests
@@ -52,7 +52,7 @@ def run():
     
             for traffic in lib.traffic_modes:
                 if traffic == "flood":
     
             for traffic in lib.traffic_modes:
                 if traffic == "flood":
-                    subprocess.call("ifconfig can0 txqueuelen 200".split()) #this stops latester from ending due to ENOBUFS errors
+                    lib.set_txqueuelen(200) #this stops latester from ending due to ENOBUFS errors
                 print("Can mode: ", traffic)
 
                 lib.set_traffic(traffic)
                 print("Can mode: ", traffic)
 
                 lib.set_traffic(traffic)
@@ -66,9 +66,9 @@ def run():
             #give time to recover from load?
             sleep(5)
 
             #give time to recover from load?
             sleep(5)
 
-            #Currently, because of problems with serial port, tests have associated images for behaviour\r
-            #otherwise, they are just histogram generators\r
-            if test.has_image:\r
+            #Currently, because of problems with serial port, tests have associated images for behaviour
+            #otherwise, they are just histogram generators
+            if test.has_image:
                 #second part of the load "handlers" -> stopping the load
                 if load == "cpu":
                     #we have to reflash "no cpu load" image
                 #second part of the load "handlers" -> stopping the load
                 if load == "cpu":
                     #we have to reflash "no cpu load" image
index a06a1ae683dd30bfc5c82a6602968d6eb2b1d854..cc5cd30b60f36ccf1af7a3cbdc26bd311531a45b 100644 (file)
@@ -1,3 +1,9 @@
+"""
+This file contains and defines tests for use in rtems_bench.
+
+Any new tests should be added to module variable tests to be seen by the bench.
+"""
+
 import lib
 
 
 import lib
 
 
@@ -8,7 +14,7 @@ class Test:
         self.has_image = has_image
 
     def run(self):
         self.has_image = has_image
 
     def run(self):
-        self.func(self)
+        self.func(self) #
 
 def nop(self):
     print(self.name)
 
 def nop(self):
     print(self.name)
@@ -18,6 +24,7 @@ def nop(self):
 
 
 def nop_time(self):
 
 
 def nop_time(self):
+    print(self.name)
     lib.symlink_results(lib.original_name_from_histogram_name(self.name))
     lib.create_plot_script()
 
     lib.symlink_results(lib.original_name_from_histogram_name(self.name))
     lib.create_plot_script()