[Bug 29249] New: Serialization-text-11

https://www.w3.org/Bugs/Public/show_bug.cgi?id=29249

            Bug ID: 29249
           Summary: Serialization-text-11
           Product: XPath / XQuery / XSLT
           Version: Candidate Recommendation
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: normal
          Priority: P2
         Component: XQuery 3 & XPath 3 Test Suite
          Assignee: oneil@saxonica.com
          Reporter: christian.gruen@gmail.com
        QA Contact: public-qt-comments@w3.org
  Target Milestone: ---

This is related to Bug 29217 and the test case "Serialization-text-11":

  <test><![CDATA[
    declare option Q{http://www.w3.org/2010/xslt-xquery-serialization}method
"text";
    "a&#xD;aa&#xD;&#xA;a&#xD;&#xA;"]]></test>
  <result>
   
<serialization-matches><![CDATA[^a\raa\r?\na\r?\n$]]></serialization-matches>
  </result>

To cover different system environments, the test results could be rewritten to:

  <result>
    <any-of>
      <serialization-matches>^a\raa\r\na\r\n$</serialization-matches>
      <serialization-matches>^a\raa\r\r\na\r\r\n$</serialization-matches>
      <serialization-matches>^a\raa\r\ra\r\r$</serialization-matches>
    </any-of>
  </result>

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Wednesday, 28 October 2015 16:44:25 UTC