mailr24755 - /trunk/devel_scripts/optimisation_testing.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on July 25, 2014 - 16:51:
Author: bugman
Date: Fri Jul 25 16:51:16 2014
New Revision: 24755

URL: http://svn.gna.org/viewcvs/relax?rev=24755&view=rev
Log:
Deleted the ancient optimisation_testing.py script, as this no longer works 
and is of no use.


Removed:
    trunk/devel_scripts/optimisation_testing.py

Removed: trunk/devel_scripts/optimisation_testing.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/devel_scripts/optimisation_testing.py?rev=24754&view=auto
==============================================================================
--- trunk/devel_scripts/optimisation_testing.py (original)
+++ trunk/devel_scripts/optimisation_testing.py (removed)
@@ -1,54 +0,0 @@
-# Script for testing optimisation for software version and architecture 
differences.
-
-# Python module imports.
-from re import search
-import sys
-
-# relax module imports.
-from test_suite.system_tests import model_free
-
-# The testing class.
-mf = model_free.Mf('run')
-
-# Execute the tests, storing the messages.
-tests = []
-messages = []
-for name in dir(mf):
-    # Skip all non-opt tests.
-    if not search('test_opt', name):
-        continue
-
-    # Print out.
-    sys.stderr.write("Test: %s\n" % name)
-
-    # Set up.
-    mf.setUp()
-
-    # Run the test.
-    test = getattr(mf, name)
-    test()
-
-    # Alias the relevent spin container.
-    spin = cdp.mol[0].res[1].spin[0]
-
-    # Get the message.
-    tests.append(name)
-    messages.append(mf.mesg_opt_debug(spin).split('\n'))
-
-    # Tear down.
-    mf.tearDown()
-
-# Write the messages to STDERR.
-for i in range(len(messages)):
-    # Header.
-    sys.stderr.write("\n\n\n\nTest: %s\n" % tests[i])
-
-    # The message lines.
-    for j in range(len(messages[i])):
-        # Clean up.
-        if j < 2 or j == len(messages[i]) - 1:
-            continue
-
-        # Write the line.
-        sys.stderr.write("        # %s\n" % messages[i][j])
-sys.stderr.write("\n\n")




Related Messages


Powered by MHonArc, Updated Fri Jul 25 17:00:02 2014