mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

al_xipe
21.37.2007 bcb84b6c6baa31d636f2deee2b0e8a6141797857
changed the way a test case log is represented in XML to avoid later XSL transform problems
1 files modified
10 ■■■■ changed files
opends/tests/functional-tests/shared/functions/utils.xml 10 ●●●● patch | view | raw | blame | history
opends/tests/functional-tests/shared/functions/utils.xml
@@ -647,16 +647,16 @@
            xml += '        <stop>%s</stop>\n'         % self.stop
            xml += '        <result>%s</result>\n'     % self.result
            xml += '        <duration>%d</duration>\n' % self.duration
            xml += '        <log>\n'
            xml += '        <log>\n<![CDATA['
            xml += '%s' % self.log
            xml += '        </log>\n'
            xml += '        ]]></log>\n'
            xml += '      </test>\n'
            return xml
            
          def appendLog(self, log):
            log=log.replace('<','')
            log=log.replace('>','')
            log=log.replace('&','&')
            #log=log.replace('<','')
            #log=log.replace('>','')
            #log=log.replace('&','&')
            self.log +='          %s\n' % log
            
          def getName(self):