mailr4355 - /1.3/relax


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

Header


Content

Posted by edward on January 05, 2008 - 18:45:
Author: bugman
Date: Sat Jan  5 18:45:36 2008
New Revision: 4355

URL: http://svn.gna.org/viewcvs/relax?rev=4355&view=rev
Log:
Clean up of the operation of the --unit-tests and --system-tests command line 
options.

These now use the Test_suite_runner methods so that the 'relax' file need not 
deal with the
implementation details of the various test suite categories.


Modified:
    1.3/relax

Modified: 1.3/relax
URL: 
http://svn.gna.org/viewcvs/relax/1.3/relax?rev=4355&r1=4354&r2=4355&view=diff
==============================================================================
--- 1.3/relax (original)
+++ 1.3/relax Sat Jan  5 18:45:36 2008
@@ -71,10 +71,7 @@
 import relax_errors
 from relax_io import log
 import relax_warnings
-from test_suite.relax_test_runner import RelaxTestRunner
 from test_suite.test_suite_runner import Test_suite_runner
-from test_suite.system_tests.main import System_tests
-from test_suite.unit_tests.unit_test_runner import Unit_test_runner
 from thread_classes import Threading, ThreadData
 import version
 
@@ -191,8 +188,9 @@
             self.interpreter._on()
 
             # Run the tests.
-            sys_runner = System_tests(self)
-            system_result = sys_runner.run()
+            runner = Test_suite_runner(self)
+            runner.run_old_system_tests()
+            runner.run_system_tests()
 
         # Execute the relax unit tests.
         elif mode == 'unit tests':
@@ -200,8 +198,8 @@
             self.set_intro_string()
 
             # Run the tests.
-            runner = Unit_test_runner(root_path='test_suite/unit_tests')
-            runner.run(runner=RelaxTestRunner())
+            runner = Test_suite_runner(self)
+            runner.run_unit_tests()
 
         # Test mode.
         elif mode == 'test':




Related Messages


Powered by MHonArc, Updated Sat Jan 05 19:20:16 2008