mailr25662 - /trunk/test_suite/system_tests/relax_disp.py


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

Header


Content

Posted by tlinnet on September 05, 2014 - 11:09:
Author: tlinnet
Date: Fri Sep  5 11:09:45 2014
New Revision: 25662

URL: http://svn.gna.org/viewcvs/relax?rev=25662&view=rev
Log:
Modified systemtest Relax_disp.test_show_apod_extract that test output from 
showApod. The output can be different according to NMRPipe version. The 
'Noise Std Dev' is though the same.

Modified:
    trunk/test_suite/system_tests/relax_disp.py

Modified: trunk/test_suite/system_tests/relax_disp.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/test_suite/system_tests/relax_disp.py?rev=25662&r1=25661&r2=25662&view=diff
==============================================================================
--- trunk/test_suite/system_tests/relax_disp.py (original)
+++ trunk/test_suite/system_tests/relax_disp.py Fri Sep  5 11:09:45 2014
@@ -6790,22 +6790,26 @@
         # Call function.
         get_output = show_apod_extract(file_name=file_name, dir=data_path)
 
-        # Define how output should look like
+        # Define how output should look like.
+        # The output from showApod differs slightly according to NMRPipe 
version. But 'Noise Std Dev' is the same.
+        # Dont test lines which can differ.
         show_apod_ver = [
             'REMARK Effect of Processing on Peak Parameters and Noise for 
%s'%(data_path+sep+file_name),
             'REMARK Automated Noise Std Dev in Processed Data: 8583.41',
             'REMARK Noise Std Dev Before Processing H1 and N15: 60.6558',
             '',
             'VARS   AXIS LABEL  TSIZE FSIZE LW_ADJ LW_FINAL HI_FACTOR 
VOL_FACTOR SIGMA_FACTOR',
-            'FORMAT %s   %-8s   %4d   %4d   %7.4f  %7.4f    %.4e      %.4e   
    %.4e',
-            '',
-            '       X    H1       800  2048 0.8107 3.7310   4.9903e-03 
9.8043e-04 5.2684e-02',
-            '       Y    N15      128   256 0.7303 3.0331   3.1260e-02 
7.8434e-03 1.3413e-01']
-
-        for i, line in enumerate(get_output):
-            line_ver = show_apod_ver[i]
+            'FORMAT %s   %-8s   %4d   %4d   %7.4f  %7.4f    %.4e      %.4e   
    %.4e']
+            #'',
+            #'       X    H1       800  2048 0.8107 3.7310   4.9903e-03 
9.8043e-04 5.2684e-02',
+            #'       Y    N15      128   256 0.7303 3.0331   3.1260e-02 
7.8434e-03 1.3413e-01']
+
+        for i, line in enumerate(show_apod_ver):
+            line_ver = get_output[i]
 
             print(line)
+            if line[:50] == 'REMARK Noise Std Dev Before Processing H1 and 
N15:':
+                continue
             # Make the string test
             self.assertEqual(line, line_ver)
 




Related Messages


Powered by MHonArc, Updated Fri Sep 05 11:20:02 2014