mailr13320 - in /branches/gui_testing/gui/analyses: auto_model_free.py auto_noe.py auto_rx_base.py


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

Header


Content

Posted by edward on June 29, 2011 - 19:49:
Author: bugman
Date: Wed Jun 29 19:49:02 2011
New Revision: 13320

URL: http://svn.gna.org/viewcvs/relax?rev=13320&view=rev
Log:
Stdio redirection is now no longer occurring when in testing mode.


Modified:
    branches/gui_testing/gui/analyses/auto_model_free.py
    branches/gui_testing/gui/analyses/auto_noe.py
    branches/gui_testing/gui/analyses/auto_rx_base.py

Modified: branches/gui_testing/gui/analyses/auto_model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/analyses/auto_model_free.py?rev=13320&r1=13319&r2=13320&view=diff
==============================================================================
--- branches/gui_testing/gui/analyses/auto_model_free.py (original)
+++ branches/gui_testing/gui/analyses/auto_model_free.py Wed Jun 29 19:49:02 
2011
@@ -855,7 +855,7 @@
             self.gui.calc_threads[-1].progress = 5.0
 
             # Controller.
-            if not status.debug:
+            if not status.debug and not status.test_mode:
                 # Redirect relax output and errors to the controller.
                 redir = Redirect_text(self.gui.controller)
                 sys.stdout = redir

Modified: branches/gui_testing/gui/analyses/auto_noe.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/analyses/auto_noe.py?rev=13320&r1=13319&r2=13320&view=diff
==============================================================================
--- branches/gui_testing/gui/analyses/auto_noe.py (original)
+++ branches/gui_testing/gui/analyses/auto_noe.py Wed Jun 29 19:49:02 2011
@@ -477,7 +477,7 @@
         """Execute the calculation."""
 
         # Controller.
-        if not status.debug:
+        if not status.debug and not status.test_mode:
             # Redirect relax output and errors to the controller.
             redir = Redirect_text(self.gui.controller)
             sys.stdout = redir

Modified: branches/gui_testing/gui/analyses/auto_rx_base.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/analyses/auto_rx_base.py?rev=13320&r1=13319&r2=13320&view=diff
==============================================================================
--- branches/gui_testing/gui/analyses/auto_rx_base.py (original)
+++ branches/gui_testing/gui/analyses/auto_rx_base.py Wed Jun 29 19:49:02 2011
@@ -373,7 +373,7 @@
         """Execute the calculation."""
 
         # Controller.
-        if not status.debug:
+        if not status.debug and not status.test_mode:
             # Redirect relax output and errors to the controller.
             redir = Redirect_text(self.gui.controller)
             sys.stdout = redir




Related Messages


Powered by MHonArc, Updated Wed Jun 29 20:00:02 2011