fix test script 49/201149/1 accepted/tizen_5.5_unified accepted/tizen_5.5_unified_mobile_hotfix accepted/tizen_5.5_unified_wearable_hotfix accepted/tizen_6.0_unified accepted/tizen_6.0_unified_hotfix accepted/tizen_6.5_unified backup/perl-XML-Simple-2.18-20220725 tizen_5.5 tizen_5.5_mobile_hotfix tizen_5.5_tv tizen_5.5_wearable_hotfix tizen_6.0 tizen_6.0_hotfix tizen_6.5 accepted/tizen/5.5/unified/20191031.013516 accepted/tizen/5.5/unified/mobile/hotfix/20201027.072930 accepted/tizen/5.5/unified/wearable/hotfix/20201027.104956 accepted/tizen/6.0/unified/20201030.112829 accepted/tizen/6.0/unified/hotfix/20201102.232310 accepted/tizen/6.5/unified/20211028.225546 accepted/tizen/unified/20190311.041257 submit/tizen/20190311.030432 submit/tizen_5.5/20191031.000008 submit/tizen_5.5_mobile_hotfix/20201026.185108 submit/tizen_5.5_wearable_hotfix/20201026.184308 submit/tizen_6.0/20201029.205503 submit/tizen_6.0_hotfix/20201102.192903 submit/tizen_6.0_hotfix/20201103.115103 submit/tizen_6.5/20211028.163601 tizen_5.5.m2_release tizen_6.0.m2_release tizen_6.5.m2_release
authorDongHun Kwak <dh0128.kwak@samsung.com>
Mon, 11 Mar 2019 02:00:09 +0000 (11:00 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Mon, 11 Mar 2019 02:01:36 +0000 (11:01 +0900)
build error
"""
[   42s] t/7_SaxStuff.t .... skipped: no XML::SAX
[   42s] Unescaped left brace in regex is illegal here in regex; marked
by <-- HERE in m/
[   42s]   ^\s*<opt
[   42s]
(\s+{http://www.w3.org/2000/xmlns/}perl="http://www.perl.com/"
 [   42s]   |\s+{http://www.perl.com/}attr="value"
 [   42s]   |\s+bare="Beer!"){3}
[   42s]   \s*>
[   42s]   \s*<{ <-- HERE
    http://www.perl.com/}element\s*>data</{http://www.perl.com/}element\s*>
    [   42s]   \s*</opt>
    [   42s]   \s*$
"""

Change-Id: Ic81649966d183594046703608e48fd76e82f4daa
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
t/8_Namespaces.t

index b4cef66927ef8428ee3dd7de7dd8f0e69c308172..03f41ac656a7cb4e7bc3560b08f1519050c13d02 100644 (file)
@@ -125,16 +125,16 @@ $opt = {
 };
 
 $xml = XMLout($opt);
-like($xml, qr{
+like($xml, qr[
   ^\s*<opt
   (\s+{http://www.w3.org/2000/xmlns/}perl="http://www.perl.com/"
   |\s+{http://www.perl.com/}attr="value"
   |\s+bare="Beer!"){3}
   \s*>
-  \s*<{http://www.perl.com/}element\s*>data</{http://www.perl.com/}element\s*>
+  \s*<\{http://www.perl.com/\}element\s*>data</\{http://www.perl.com/\}element\s*>
   \s*</opt>
   \s*$
-}sx, 'clarkian names not converted to qnames on output by default');
+]sx, 'clarkian names not converted to qnames on output by default');
 
 
 # Confirm nsexpand option works on output