author | Johan Groth <johang@symbian.org> |
Tue, 14 Sep 2010 16:04:20 +0100 | |
changeset 1255 | 9a6d81b932b1 |
parent 1223 | 26c4732f6e56 |
permissions | -rw-r--r-- |
1213
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
1 |
#!/usr/bin/perl |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
2 |
# Copyright (c) 2009 Symbian Foundation Ltd |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
3 |
# This component and the accompanying materials are made available |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
4 |
# under the terms of the License "Eclipse Public License v1.0" |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
5 |
# which accompanies this distribution, and is available |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
6 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html". |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
7 |
# |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
8 |
# Initial Contributors: |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
9 |
# Symbian Foundation Ltd - initial contribution. |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
10 |
# |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
11 |
# Contributors: |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
12 |
# Maciej Seroka <maciejs@symbian.org> |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
13 |
# |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
14 |
# Description: |
1223
26c4732f6e56
Added BC tests for StdLibs, Calendar and Notepad
Maciej Seroka <maciejs@symbian.org>
parents:
1219
diff
changeset
|
15 |
# Script to build ATS test drop for XML Services BC tests |
1213
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
16 |
|
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
17 |
|
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
18 |
use strict; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
19 |
use File::Copy; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
20 |
use File::Path; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
21 |
|
1219
c0b9bf290520
Added Shortlink Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
1213
diff
changeset
|
22 |
unlink "xmlsrvtest.zip"; |
1213
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
23 |
rmtree "temp"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
24 |
mkpath "temp/xmlsrvtest/general/TestFramework"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
25 |
mkpath "temp/xmlsrvtest/general/XMLTest"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
26 |
mkpath "temp/xmlsrvtest/general/XMLTest/output"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
27 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
28 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/chunkparser"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
29 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/dom"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
30 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/Encoding"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
31 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/xmlconf"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
32 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
33 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
34 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/appcontents"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
35 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/contents"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
36 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/copy"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
37 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/create"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
38 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/move"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
39 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/remove"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
40 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/replace"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
41 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/xmlconf/xmltest"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
42 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/xmlconf/xmltest/not_wf"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
43 |
mkpath "temp/xmlsrvtest/general/XMLTest/output/xmlconf/xmltest/wf"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
44 |
mkpath "temp/xmlsrvtest/general/XMLTest/input/bincont"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
45 |
mkpath "temp/xmlsrvtest/general/XMLTest/input/chunk"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
46 |
mkpath "temp/xmlsrvtest/general/XMLTest/input/containers"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
47 |
mkpath "temp/xmlsrvtest/general/XMLTest/input/dom"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
48 |
mkpath "temp/xmlsrvtest/general/XMLTest/input/correct"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
49 |
mkpath "temp/xmlsrvtest/general/XMLTest/input/Encoding"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
50 |
mkpath "temp/xmlsrvtest/general/XMLTest/input/filecontainer"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
51 |
mkpath "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
52 |
mkpath "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
53 |
mkpath "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
54 |
mkpath "temp/xmlsrvtest/general/XMLTest/pattern/dom"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
55 |
mkpath "temp/xmlsrvtest/general/XMLTest/pattern/Encoding"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
56 |
mkpath "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
57 |
mkpath "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
58 |
|
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
59 |
mkpath "temp/xmlsrvtest/winscw_udeb"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
60 |
|
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
61 |
my $epoc=$ENV{'EPOCROOT'} . "epoc32/"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
62 |
copy("xmlsrv.xml", "temp/test.xml"); |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
63 |
|
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
64 |
copy($epoc . "release/winscw/udeb/XeDomBCTester.dll", "temp/xmlsrvtest/winscw_udeb/XeDomBCTester.dll") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
65 |
copy($epoc . "winscw/c/TestFramework/DomBinCont.cfg", "temp/xmlsrvtest/general/TestFramework/DomBinCont.cfg") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
66 |
copy($epoc . "winscw/c/TestFramework/DomChunkCont.cfg", "temp/xmlsrvtest/general/TestFramework/DomChunkCont.cfg") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
67 |
copy($epoc . "winscw/c/TestFramework/DomChunkParser.cfg", "temp/xmlsrvtest/general/TestFramework/DomChunkParser.cfg") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
68 |
copy($epoc . "winscw/c/TestFramework/DomElem.cfg", "temp/xmlsrvtest/general/TestFramework/DomElem.cfg") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
69 |
copy($epoc . "winscw/c/TestFramework/DomEncoding.cfg", "temp/xmlsrvtest/general/TestFramework/DomEncoding.cfg") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
70 |
copy($epoc . "winscw/c/TestFramework/DomFileCont.cfg", "temp/xmlsrvtest/general/TestFramework/DomFileCont.cfg") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
71 |
copy($epoc . "winscw/c/TestFramework/DomModif.cfg", "temp/xmlsrvtest/general/TestFramework/DomModif.cfg") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
72 |
copy($epoc . "winscw/c/TestFramework/DomNodeFilter.cfg", "temp/xmlsrvtest/general/TestFramework/DomNodeFilter.cfg") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
73 |
copy($epoc . "winscw/c/TestFramework/DomNotWF.cfg", "temp/xmlsrvtest/general/TestFramework/DomNotWF.cfg") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
74 |
copy($epoc . "winscw/c/TestFramework/DomWF.cfg", "temp/xmlsrvtest/general/TestFramework/DomWF.cfg") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
75 |
copy($epoc . "winscw/c/TestFramework/DomXmlId.cfg", "temp/xmlsrvtest/general/TestFramework/DomXmlId.cfg") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
76 |
copy($epoc . "winscw/c/TestFramework/DomXPath.cfg", "temp/xmlsrvtest/general/TestFramework/DomXPath.cfg") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
77 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/bincont/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
78 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/chunkparser/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
79 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/dom/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
80 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/Encoding/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
81 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/xmlconf/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
82 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
83 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
84 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/appcontents/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
85 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/contents/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
86 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/copy/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
87 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/create/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
88 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/move/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
89 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/remove/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
90 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/replace/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
91 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/xmlconf/xmltest/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
92 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/xmlconf/xmltest/not_wf/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
93 |
copy($epoc . "winscw/c/XMLTest/XMLTest.out", "temp/xmlsrvtest/general/XMLTest/output/xmlconf/xmltest/wf/XMLTest.out") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
94 |
copy($epoc . "winscw/c/XMLTest/input/bincont/CreateSequenceSec.xml", "temp/xmlsrvtest/general/XMLTest/input/bincont/CreateSequenceSec.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
95 |
copy($epoc . "winscw/c/XMLTest/input/bincont/signed-doc.xml", "temp/xmlsrvtest/general/XMLTest/input/bincont/signed-doc.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
96 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_00.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_00.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
97 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_01.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_01.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
98 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_02.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_02.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
99 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_03.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_03.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
100 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_04.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_04.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
101 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_05.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_05.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
102 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_06.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_06.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
103 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_07.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_07.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
104 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_09.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_09.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
105 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_10.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_10.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
106 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_01.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_01.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
107 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_02.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_02.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
108 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_03.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_03.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
109 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_04.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_04.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
110 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_05.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_05.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
111 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_06.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_06.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
112 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_07.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_07.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
113 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_08.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_08.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
114 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_09.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_09.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
115 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_10.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_10.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
116 |
copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_11.xml", "temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_11.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
117 |
copy($epoc . "winscw/c/XMLTest/input/containers/ascii.bin", "temp/xmlsrvtest/general/XMLTest/input/containers/ascii.bin") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
118 |
copy($epoc . "winscw/c/XMLTest/input/containers/entities.txt", "temp/xmlsrvtest/general/XMLTest/input/containers/entities.txt") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
119 |
copy($epoc . "winscw/c/XMLTest/input/containers/errors.doc", "temp/xmlsrvtest/general/XMLTest/input/containers/errors.doc") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
120 |
copy($epoc . "winscw/c/XMLTest/input/containers/html.zip", "temp/xmlsrvtest/general/XMLTest/input/containers/html.zip") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
121 |
copy($epoc . "winscw/c/XMLTest/input/containers/login.gif", "temp/xmlsrvtest/general/XMLTest/input/containers/login.gif") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
122 |
copy($epoc . "winscw/c/XMLTest/input/containers/not-escaped.txt", "temp/xmlsrvtest/general/XMLTest/input/containers/not-escaped.txt") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
123 |
copy($epoc . "winscw/c/XMLTest/input/containers/petit.jpg", "temp/xmlsrvtest/general/XMLTest/input/containers/petit.jpg") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
124 |
copy($epoc . "winscw/c/XMLTest/input/containers/picture.jpg", "temp/xmlsrvtest/general/XMLTest/input/containers/picture.jpg") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
125 |
copy($epoc . "winscw/c/XMLTest/input/containers/zip.bin", "temp/xmlsrvtest/general/XMLTest/input/containers/zip.bin") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
126 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_elem_000.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_elem_000.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
127 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_elem_001.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_elem_001.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
128 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_elem_002.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_elem_002.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
129 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_elem_003.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_elem_003.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
130 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_elem_004.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_elem_004.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
131 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_elem_005.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_elem_005.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
132 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_elem_006.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_elem_006.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
133 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_ID_01.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_ID_01.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
134 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_01.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_01.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
135 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_02.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_02.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
136 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_03.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_03.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
137 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_04.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_04.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
138 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_05.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_05.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
139 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_06.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_06.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
140 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_07.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_07.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
141 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_08.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_08.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
142 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_09.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_09.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
143 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_10.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_10.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
144 |
copy($epoc . "winscw/c/XMLTest/input/dom/DOM_nodefilter.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/DOM_nodefilter.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
145 |
copy($epoc . "winscw/c/XMLTest/input/dom/xpath_01.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/xpath_01.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
146 |
copy($epoc . "winscw/c/XMLTest/input/dom/xpath_02.xml", "temp/xmlsrvtest/general/XMLTest/input/dom/xpath_02.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
147 |
copy($epoc . "winscw/c/XMLTest/input/correct/XML_correct_012.xml", "temp/xmlsrvtest/general/XMLTest/input/correct/XML_correct_012.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
148 |
copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_001.xml", "temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_001.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
149 |
copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_002.xml", "temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_002.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
150 |
copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_003.xml", "temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_003.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
151 |
copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_004.xml", "temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_004.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
152 |
copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_005.xml", "temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_005.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
153 |
copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_006.xml", "temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_006.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
154 |
copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_007.xml", "temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_007.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
155 |
copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_008.xml", "temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_008.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
156 |
copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_009.xml", "temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_009.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
157 |
copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_010.xml", "temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_010.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
158 |
copy($epoc . "winscw/c/XMLTest/input/filecontainer/icon.gif", "temp/xmlsrvtest/general/XMLTest/input/filecontainer/icon.gif") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
159 |
copy($epoc . "winscw/c/XMLTest/input/filecontainer/test.doc", "temp/xmlsrvtest/general/XMLTest/input/filecontainer/test.doc") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
160 |
copy($epoc . "winscw/c/XMLTest/input/filecontainer/test.jpg", "temp/xmlsrvtest/general/XMLTest/input/filecontainer/test.jpg") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
161 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_001.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_001.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
162 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_002.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_002.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
163 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_003.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_003.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
164 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_004.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_004.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
165 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_005.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_005.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
166 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_006.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_006.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
167 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_007.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_007.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
168 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_008.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_008.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
169 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_009.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_009.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
170 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_010.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_010.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
171 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_011.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_011.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
172 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_012.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_012.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
173 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_013.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_013.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
174 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_014.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_014.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
175 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_015.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_015.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
176 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_016.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_016.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
177 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_017.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_017.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
178 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_018.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_018.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
179 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_019.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_019.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
180 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_020.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_020.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
181 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_021.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_021.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
182 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_022.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_022.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
183 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_023.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_023.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
184 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_024.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_024.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
185 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_025.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_025.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
186 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_026.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_026.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
187 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_027.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_027.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
188 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_028.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_028.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
189 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_029.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_029.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
190 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_030.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_030.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
191 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_031.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_031.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
192 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_032.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_032.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
193 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_033.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_033.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
194 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_034.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_034.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
195 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_035.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_035.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
196 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_036.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_036.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
197 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_037.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_037.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
198 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_038.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_038.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
199 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_039.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_039.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
200 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_040.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_040.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
201 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_041.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_041.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
202 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_042.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_042.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
203 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_043.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_043.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
204 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_044.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_044.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
205 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_045.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_045.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
206 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_046.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_046.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
207 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_047.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_047.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
208 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_048.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_048.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
209 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_049.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_049.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
210 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_050.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_050.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
211 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_051.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_051.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
212 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_052.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_052.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
213 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_053.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_053.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
214 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_054.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_054.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
215 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_055.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_055.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
216 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_056.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_056.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
217 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_057.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_057.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
218 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_058.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_058.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
219 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_059.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_059.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
220 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_060.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_060.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
221 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_061.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_061.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
222 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_062.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_062.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
223 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_063.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_063.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
224 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_064.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_064.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
225 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_065.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_065.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
226 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_066.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_066.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
227 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_067.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_067.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
228 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_068.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_068.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
229 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_069.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_069.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
230 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_070.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_070.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
231 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_071.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_071.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
232 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_072.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_072.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
233 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_073.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_073.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
234 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_074.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_074.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
235 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_075.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_075.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
236 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_076.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_076.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
237 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_077.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_077.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
238 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_078.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_078.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
239 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_079.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_079.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
240 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_080.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_080.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
241 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_081.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_081.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
242 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_082.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_082.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
243 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_083.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_083.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
244 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_084.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_084.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
245 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_085.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_085.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
246 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_086.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_086.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
247 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_087.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_087.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
248 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_088.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_088.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
249 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_089.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_089.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
250 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_090.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_090.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
251 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_091.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_091.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
252 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_092.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_092.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
253 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_093.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_093.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
254 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_094.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_094.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
255 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_095.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_095.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
256 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_096.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_096.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
257 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_097.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_097.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
258 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_098.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_098.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
259 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_099.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_099.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
260 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_100.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_100.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
261 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_101.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_101.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
262 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_102.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_102.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
263 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_103.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_103.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
264 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_104.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_104.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
265 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_105.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_105.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
266 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_106.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_106.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
267 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_107.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_107.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
268 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_108.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_108.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
269 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_109.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_109.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
270 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_110.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_110.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
271 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_111.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_111.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
272 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_112.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_112.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
273 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_113.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_113.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
274 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_114.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_114.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
275 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_115.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_115.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
276 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_116.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_116.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
277 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_117.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_117.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
278 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_118.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_118.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
279 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_119.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_119.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
280 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_120.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_120.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
281 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_121.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_121.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
282 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_122.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_122.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
283 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_123.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_123.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
284 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_124.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_124.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
285 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_125.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_125.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
286 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_126.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_126.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
287 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_127.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_127.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
288 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_128.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_128.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
289 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_129.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_129.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
290 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_130.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_130.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
291 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_131.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_131.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
292 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_132.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_132.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
293 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_133.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_133.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
294 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_134.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_134.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
295 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_135.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_135.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
296 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_136.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_136.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
297 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_137.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_137.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
298 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_138.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_138.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
299 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_139.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_139.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
300 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_140.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_140.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
301 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_141.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_141.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
302 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_142.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_142.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
303 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_143.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_143.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
304 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_144.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_144.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
305 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_145.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_145.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
306 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_146.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_146.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
307 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_147.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_147.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
308 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_148.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_148.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
309 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_149.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_149.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
310 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_150.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_150.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
311 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_151.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_151.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
312 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_152.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_152.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
313 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_153.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_153.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
314 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_154.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_154.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
315 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_155.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_155.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
316 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_156.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_156.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
317 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_157.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_157.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
318 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_158.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_158.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
319 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_159.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_159.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
320 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_160.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_160.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
321 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_161.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_161.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
322 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_162.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_162.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
323 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_163.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_163.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
324 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_164.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_164.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
325 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_165.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_165.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
326 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_166.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_166.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
327 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_167.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_167.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
328 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_168.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_168.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
329 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_169.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_169.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
330 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_170.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_170.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
331 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_171.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_171.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
332 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_172.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_172.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
333 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_173.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_173.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
334 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_174.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_174.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
335 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_175.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_175.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
336 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_176.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_176.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
337 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_177.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_177.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
338 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_178.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_178.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
339 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_179.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_179.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
340 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_180.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_180.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
341 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_181.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_181.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
342 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_182.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_182.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
343 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_183.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_183.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
344 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_184.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_184.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
345 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_185.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_185.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
346 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_186.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_186.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
347 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_001.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_001.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
348 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_002.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_002.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
349 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_003.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_003.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
350 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_004.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_004.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
351 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_005.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_005.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
352 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_006.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_006.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
353 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_007.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_007.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
354 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_008.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_008.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
355 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_009.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_009.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
356 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_010.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_010.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
357 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_011.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_011.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
358 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_012.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_012.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
359 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_013.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_013.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
360 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_014.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_014.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
361 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_015.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_015.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
362 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_016.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_016.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
363 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_017.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_017.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
364 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_018.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_018.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
365 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_019.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_019.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
366 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_020.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_020.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
367 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_021.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_021.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
368 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_022.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_022.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
369 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_023.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_023.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
370 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_024.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_024.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
371 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_025.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_025.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
372 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_026.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_026.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
373 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_027.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_027.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
374 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_028.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_028.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
375 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_029.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_029.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
376 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_030.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_030.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
377 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_031.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_031.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
378 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_032.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_032.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
379 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_033.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_033.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
380 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_034.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_034.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
381 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_035.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_035.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
382 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_036.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_036.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
383 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_037.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_037.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
384 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_038.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_038.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
385 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_039.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_039.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
386 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_040.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_040.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
387 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_041.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_041.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
388 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_042.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_042.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
389 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_043.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_043.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
390 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_044.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_044.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
391 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_045.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_045.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
392 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_046.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_046.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
393 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_047.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_047.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
394 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_048.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_048.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
395 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_049.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_049.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
396 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_050.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_050.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
397 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_051.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_051.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
398 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_052.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_052.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
399 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_053.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_053.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
400 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_054.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_054.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
401 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_055.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_055.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
402 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_056.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_056.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
403 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_057.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_057.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
404 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_058.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_058.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
405 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_059.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_059.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
406 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_060.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_060.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
407 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_061.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_061.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
408 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_062.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_062.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
409 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_063.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_063.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
410 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_064.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_064.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
411 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_065.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_065.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
412 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_066.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_066.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
413 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_067.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_067.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
414 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_068.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_068.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
415 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_070.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_070.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
416 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_071.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_071.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
417 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_072.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_072.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
418 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_073.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_073.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
419 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_074.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_074.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
420 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_075.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_075.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
421 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_077.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_077.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
422 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_078.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_078.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
423 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_079.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_079.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
424 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_080.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_080.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
425 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_081.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_081.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
426 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_082.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_082.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
427 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_083.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_083.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
428 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_084.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_084.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
429 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_085.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_085.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
430 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_086.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_086.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
431 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_087.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_087.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
432 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_088.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_088.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
433 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_089.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_089.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
434 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_092.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_092.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
435 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_093.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_093.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
436 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_094.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_094.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
437 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_095.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_095.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
438 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_096.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_096.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
439 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_097.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_097.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
440 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_098.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_098.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
441 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_099.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_099.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
442 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_100.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_100.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
443 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_101.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_101.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
444 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_102.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_102.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
445 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_103.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_103.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
446 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_104.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_104.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
447 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_105.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_105.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
448 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_106.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_106.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
449 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_107.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_107.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
450 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_108.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_108.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
451 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_109.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_109.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
452 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_110.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_110.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
453 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_111.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_111.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
454 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_112.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_112.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
455 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_113.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_113.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
456 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_114.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_114.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
457 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_115.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_115.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
458 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_116.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_116.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
459 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_117.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_117.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
460 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_118.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_118.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
461 |
copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_119.xml", "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_119.xml") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
462 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_01.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_01.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
463 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_02.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_02.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
464 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_03.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_03.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
465 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_04.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_04.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
466 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_05.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_05.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
467 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_06.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_06.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
468 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_07.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_07.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
469 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_08.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_08.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
470 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_09.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_09.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
471 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_10.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_10.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
472 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_11.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_11.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
473 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_12.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_12.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
474 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_01.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_01.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
475 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_02.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_02.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
476 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_03.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_03.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
477 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_04.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_04.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
478 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_05.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_05.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
479 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_06.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_06.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
480 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_07.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_07.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
481 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_08.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_08.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
482 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_09.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_09.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
483 |
copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_10.ref", "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_10.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
484 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_elem_001.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_elem_001.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
485 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_elem_002.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_elem_002.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
486 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_elem_003.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_elem_003.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
487 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_elem_004.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_elem_004.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
488 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_elem_005.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_elem_005.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
489 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_elem_006.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_elem_006.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
490 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_inner_01.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_inner_01.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
491 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_inner_02.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_inner_02.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
492 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_inner_03.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_inner_03.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
493 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_inner_04.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_inner_04.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
494 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_001.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_001.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
495 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_002.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_002.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
496 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_003.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_003.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
497 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_004.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_004.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
498 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_005.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_005.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
499 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_006.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_006.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
500 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_008.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_008.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
501 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_009.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_009.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
502 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_010.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_010.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
503 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_011.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_011.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
504 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_012.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_012.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
505 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_013.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_013.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
506 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_014.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_014.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
507 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_015.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_015.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
508 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_016.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_016.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
509 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_017.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_017.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
510 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_018.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_018.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
511 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_019.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_019.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
512 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_020.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_020.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
513 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_021.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_021.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
514 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_022.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_022.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
515 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_034.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_034.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
516 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_035.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_035.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
517 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_036.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_036.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
518 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_041.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_041.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
519 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_046.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_046.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
520 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_nodefilter_01.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_nodefilter_01.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
521 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_outer_01.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_outer_01.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
522 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_outer_02.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_outer_02.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
523 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_outer_03.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_outer_03.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
524 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_outer_04.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_outer_04.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
525 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_save_01.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_save_01.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
526 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_save_02.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_save_02.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
527 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_save_03.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_save_03.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
528 |
copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_xmlid_08.ref", "temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_xmlid_08.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
529 |
copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_001.ref", "temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_001.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
530 |
copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_002.ref", "temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_002.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
531 |
copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_003.ref", "temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_003.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
532 |
copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_004.ref", "temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_004.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
533 |
copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_005.ref", "temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_005.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
534 |
copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_006.ref", "temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_006.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
535 |
copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_007.ref", "temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_007.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
536 |
copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_008.ref", "temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_008.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
537 |
copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_009.ref", "temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_009.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
538 |
copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_010.ref", "temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_010.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
539 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_001.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_001.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
540 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_001b.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_001b.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
541 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_002.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_002.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
542 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_003.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_003.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
543 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_004.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_004.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
544 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_005.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_005.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
545 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_006.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_006.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
546 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_007.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_007.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
547 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_008.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_008.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
548 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_009.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_009.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
549 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_010.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_010.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
550 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_011.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_011.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
551 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_012.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_012.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
552 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_013.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_013.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
553 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_014.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_014.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
554 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_015.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_015.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
555 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_016.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_016.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
556 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_017.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_017.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
557 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_018.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_018.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
558 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_019.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_019.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
559 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_020.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_020.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
560 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_021.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_021.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
561 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_022.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_022.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
562 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_023.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_023.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
563 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_024.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_024.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
564 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_025.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_025.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
565 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_026.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_026.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
566 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_027.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_027.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
567 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_028.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_028.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
568 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_029.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_029.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
569 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_030.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_030.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
570 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_031.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_031.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
571 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_032.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_032.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
572 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_033.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_033.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
573 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_034.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_034.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
574 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_035.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_035.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
575 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_036.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_036.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
576 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_037.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_037.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
577 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_038.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_038.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
578 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_039.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_039.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
579 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_040.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_040.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
580 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_041.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_041.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
581 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_042.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_042.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
582 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_043.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_043.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
583 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_044.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_044.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
584 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_045.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_045.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
585 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_046.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_046.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
586 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_047.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_047.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
587 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_048.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_048.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
588 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_049.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_049.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
589 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_050.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_050.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
590 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_051.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_051.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
591 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_052.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_052.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
592 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_053.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_053.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
593 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_054.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_054.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
594 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_055.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_055.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
595 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_056.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_056.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
596 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_057.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_057.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
597 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_058.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_058.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
598 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_059.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_059.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
599 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_060.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_060.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
600 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_061.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_061.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
601 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_062.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_062.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
602 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_063.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_063.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
603 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_064.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_064.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
604 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_065.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_065.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
605 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_066.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_066.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
606 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_067.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_067.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
607 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_068.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_068.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
608 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_069.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_069.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
609 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_070.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_070.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
610 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_071.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_071.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
611 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_072.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_072.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
612 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_073.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_073.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
613 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_074.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_074.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
614 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_075.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_075.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
615 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_076.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_076.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
616 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_077.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_077.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
617 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_078.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_078.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
618 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_079.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_079.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
619 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_080.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_080.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
620 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_081.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_081.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
621 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_082.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_082.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
622 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_083.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_083.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
623 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_084.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_084.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
624 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_085.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_085.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
625 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_086.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_086.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
626 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_087.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_087.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
627 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_088.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_088.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
628 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_089.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_089.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
629 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_090.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_090.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
630 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_091.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_091.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
631 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_092.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_092.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
632 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_093.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_093.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
633 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_094.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_094.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
634 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_095.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_095.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
635 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_096.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_096.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
636 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_097.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_097.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
637 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_098.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_098.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
638 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_099.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_099.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
639 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_100.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_100.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
640 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_101.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_101.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
641 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_102.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_102.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
642 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_103.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_103.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
643 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_104.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_104.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
644 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_105.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_105.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
645 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_106.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_106.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
646 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_107.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_107.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
647 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_108.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_108.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
648 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_109.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_109.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
649 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_110.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_110.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
650 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_111.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_111.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
651 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_112.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_112.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
652 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_113.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_113.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
653 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_114.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_114.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
654 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_115.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_115.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
655 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_116.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_116.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
656 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_117.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_117.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
657 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_118.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_118.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
658 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_119.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_119.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
659 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_120.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_120.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
660 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_121.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_121.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
661 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_122.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_122.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
662 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_123.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_123.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
663 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_124.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_124.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
664 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_125.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_125.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
665 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_126.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_126.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
666 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_127.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_127.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
667 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_128.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_128.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
668 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_129.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_129.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
669 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_130.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_130.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
670 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_131.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_131.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
671 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_132.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_132.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
672 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_133.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_133.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
673 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_134.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_134.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
674 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_135.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_135.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
675 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_136.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_136.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
676 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_137.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_137.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
677 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_138.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_138.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
678 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_139.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_139.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
679 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_140.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_140.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
680 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_141.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_141.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
681 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_142.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_142.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
682 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_143.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_143.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
683 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_144.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_144.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
684 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_145.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_145.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
685 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_146.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_146.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
686 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_147.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_147.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
687 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_148.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_148.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
688 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_149.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_149.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
689 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_150.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_150.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
690 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_151.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_151.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
691 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_152.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_152.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
692 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_153.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_153.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
693 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_154.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_154.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
694 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_155.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_155.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
695 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_156.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_156.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
696 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_157.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_157.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
697 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_158.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_158.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
698 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_159.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_159.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
699 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_160.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_160.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
700 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_161.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_161.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
701 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_162.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_162.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
702 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_163.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_163.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
703 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_164.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_164.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
704 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_165.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_165.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
705 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_166.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_166.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
706 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_167.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_167.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
707 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_168.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_168.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
708 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_169.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_169.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
709 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_170.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_170.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
710 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_171.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_171.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
711 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_172.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_172.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
712 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_173.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_173.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
713 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_174.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_174.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
714 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_175.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_175.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
715 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_176.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_176.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
716 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_177.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_177.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
717 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_178.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_178.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
718 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_179.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_179.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
719 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_180.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_180.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
720 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_181.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_181.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
721 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_182.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_182.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
722 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_183.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_183.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
723 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_184.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_184.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
724 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_185.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_185.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
725 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_186.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_186.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
726 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_001.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_001.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
727 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_002.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_002.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
728 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_003.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_003.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
729 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_004.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_004.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
730 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_005.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_005.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
731 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_006.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_006.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
732 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_007.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_007.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
733 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_008.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_008.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
734 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_009.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_009.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
735 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_010.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_010.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
736 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_011.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_011.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
737 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_012.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_012.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
738 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_013.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_013.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
739 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_014.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_014.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
740 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_015.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_015.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
741 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_016.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_016.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
742 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_017.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_017.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
743 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_018.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_018.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
744 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_019.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_019.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
745 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_020.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_020.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
746 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_021.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_021.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
747 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_022.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_022.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
748 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_023.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_023.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
749 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_024.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_024.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
750 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_025.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_025.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
751 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_026.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_026.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
752 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_027.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_027.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
753 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_028.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_028.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
754 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_029.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_029.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
755 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_030.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_030.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
756 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_031.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_031.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
757 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_032.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_032.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
758 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_033.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_033.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
759 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_034.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_034.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
760 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_035.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_035.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
761 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_036.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_036.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
762 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_037.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_037.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
763 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_038.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_038.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
764 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_039.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_039.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
765 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_040.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_040.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
766 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_041.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_041.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
767 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_042.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_042.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
768 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_043.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_043.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
769 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_044.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_044.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
770 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_045.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_045.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
771 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_046.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_046.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
772 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_047.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_047.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
773 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_048.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_048.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
774 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_049.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_049.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
775 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_050.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_050.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
776 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_051.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_051.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
777 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_052.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_052.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
778 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_053.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_053.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
779 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_054.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_054.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
780 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_055.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_055.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
781 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_056.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_056.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
782 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_057.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_057.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
783 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_058.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_058.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
784 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_059.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_059.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
785 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_060.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_060.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
786 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_061.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_061.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
787 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_062.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_062.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
788 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_063.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_063.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
789 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_064.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_064.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
790 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_065.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_065.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
791 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_066.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_066.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
792 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_067.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_067.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
793 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_068.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_068.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
794 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_070.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_070.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
795 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_071.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_071.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
796 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_072.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_072.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
797 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_073.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_073.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
798 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_074.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_074.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
799 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_075.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_075.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
800 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_077.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_077.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
801 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_078.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_078.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
802 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_079.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_079.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
803 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_080.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_080.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
804 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_081.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_081.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
805 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_082.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_082.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
806 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_083.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_083.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
807 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_084.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_084.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
808 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_085.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_085.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
809 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_086.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_086.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
810 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_087.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_087.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
811 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_088.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_088.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
812 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_089.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_089.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
813 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_092.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_092.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
814 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_093.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_093.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
815 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_094.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_094.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
816 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_095.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_095.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
817 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_096.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_096.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
818 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_097.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_097.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
819 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_098.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_098.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
820 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_099.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_099.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
821 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_100.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_100.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
822 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_101.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_101.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
823 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_102.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_102.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
824 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_103.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_103.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
825 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_104.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_104.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
826 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_105.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_105.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
827 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_106.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_106.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
828 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_107.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_107.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
829 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_108.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_108.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
830 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_109.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_109.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
831 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_110.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_110.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
832 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_111.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_111.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
833 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_112.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_112.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
834 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_113.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_113.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
835 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_114.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_114.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
836 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_115.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_115.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
837 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_116.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_116.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
838 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_117.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_117.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
839 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_118.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_118.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
840 |
copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_119.ref", "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_119.ref") or die "failed : $!"; |
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
841 |
|
6f2a3431cc87
Added XML Services BC test suite
Maciej Seroka <maciejs@symbian.org>
parents:
diff
changeset
|
842 |
system("7z a -tzip xmlsrvtest.zip ./temp/*"); |