mailr6545 - /1.3/test_suite/system_tests/model_free.py


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

Header


Content

Posted by edward on June 28, 2008 - 23:57:
Author: bugman
Date: Sat Jun 28 23:57:41 2008
New Revision: 6545

URL: http://svn.gna.org/viewcvs/relax?rev=6545&view=rev
Log:
Added some debugging print outs.


Modified:
    1.3/test_suite/system_tests/model_free.py

Modified: 1.3/test_suite/system_tests/model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/system_tests/model_free.py?rev=6545&r1=6544&r2=6545&view=diff
==============================================================================
--- 1.3/test_suite/system_tests/model_free.py (original)
+++ 1.3/test_suite/system_tests/model_free.py Sat Jun 28 23:57:41 2008
@@ -817,9 +817,11 @@
         pipe_13 = ds['1.3']
 
         # Test that the objects in the base pipes are the same.
+        print "Comparison of the objects of the base data pipe:"
         self.object_comparison(obj1=pipe_12, obj2=pipe_13, skip=['mol', 
'diff_tensor'])
 
         # Test that the diffusion tensor data is the same.
+        print "Comparison of the objects of the diffusion tensor:"
         self.object_comparison(obj1=pipe_12.diff_tensor, 
obj2=pipe_13.diff_tensor)
 
         # Test the number of molecules.
@@ -828,6 +830,7 @@
         # Loop over the molecules.
         for i in xrange(len(pipe_12.mol)):
             # Test the objects.
+            print "Comparison of the objects of the molecule:"
             self.object_comparison(obj1=pipe_12.mol[i], obj2=pipe_13.mol[i], 
skip=['res'])
 
             # Test the number of residues.
@@ -836,6 +839,7 @@
             # Loop over the residues.
             for j in xrange(len(pipe_12.mol[i].res)):
                 # Test the objects.
+                print "Comparison of the objects of the residue:"
                 self.object_comparison(obj1=pipe_12.mol[i].res[j], 
obj2=pipe_13.mol[i].res[j], skip=['spin'])
 
                 # Test the number of spins.
@@ -844,6 +848,7 @@
                 # Loop over the spins.
                 for k in xrange(len(pipe_12.mol[i].res[j].spin)):
                     # Test the objects.
+                    print "Comparison of the objects of the spin:"
                     
self.object_comparison(obj1=pipe_12.mol[i].res[j].spin[k], 
obj2=pipe_13.mol[i].res[j].spin[k])
 
 




Related Messages


Powered by MHonArc, Updated Sun Jun 29 00:20:22 2008