Uploaded image for project: 'Qpid Dispatch'
  1. Qpid Dispatch
  2. DISPATCH-2113

Remove all relative path references in python system tests

    XMLWordPrintableJSON

Details

    • Test
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 1.15.0
    • 1.17.0
    • Tests
    • None

    Description

      Several tests use relative paths to get log files. For example in system_tests_protocol_settings.py we have

       with open('../setUpClass/MaxSessions.log', 'r') as router_log:

       

      The above line can be replaced with:

      logfile = os.path.join(self.router.outdir, self.router.logfile)
      with open(logfile, 'r') as router_log: 

      Attachments

        Activity

          People

            gmurthy Ganesh Murthy
            gmurthy Ganesh Murthy
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: