~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/lib/test_mgmt/test_management.py

  • Committer: patrick crews
  • Date: 2011-06-01 23:31:52 UTC
  • mto: This revision was merged to the branch mainline in revision 2322.
  • Revision ID: gleebix@gmail.com-20110601233152-7kwbqhr4xujq9hsu
Updates to dbqp to add a sysbench mode.  Created test suites to duplicate readonly / readwrite drizzle-automation tests.  Still needs some work, but tests execute

Show diffs side-by-side

added added

removed removed

Lines of Context:
198
198
            self.executed_tests[test_status] = [test_case]
199
199
        else:
200
200
            self.executed_tests[test_status].append(test_case)
201
 
        # report
 
201
        # report.  If the test failed, we print any additional
 
202
        # output returned by the test executor
 
203
        # We may want to report additional output at other times
 
204
        if test_status != 'pass':
 
205
            report_output = True
 
206
        else:
 
207
            report_output = False
202
208
        self.logging.test_report( test_case.fullname, test_status
203
 
                                , exec_time, output)
 
209
                                , exec_time, output, report_output)
204
210
 
205
211
 
206
212
    def print_test_list(self):