|
1 #!/usr/bin/perl |
|
2 # Copyright (c) 2009 Symbian Foundation Ltd |
|
3 # This component and the accompanying materials are made available |
|
4 # under the terms of the License "Eclipse Public License v1.0" |
|
5 # which accompanies this distribution, and is available |
|
6 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 # |
|
8 # Initial Contributors: |
|
9 # Symbian Foundation Ltd - initial contribution. |
|
10 # |
|
11 # Contributors: |
|
12 # Brendan Donegan <brendand@symbian.org> |
|
13 # |
|
14 # Description: |
|
15 # Script to build ATS test drop for BC Web Services tests |
|
16 |
|
17 |
|
18 use strict; |
|
19 use File::Copy; |
|
20 use File::Path; |
|
21 |
|
22 unlink "messaging.zip"; |
|
23 ##rmtree "temp"; |
|
24 mkpath "temp/bcmessaging/testframework/general"; |
|
25 mkpath "temp/bcmessaging/resource/general"; |
|
26 mkpath "temp/bcmessaging/winscw_udeb"; |
|
27 |
|
28 my $epoc=$ENV{'EPOCROOT'} . "epoc32/"; |
|
29 copy("messaging.xml", "temp/test.xml"); |
|
30 |
|
31 copy($epoc . "release/winscw/udeb/MMSClientMTMBCTester.dll", "temp/bcmessaging/winscw_udeb/MMSClientMTMBCTester.dll"); |
|
32 copy($epoc . "winscw/c/testframework/MMSClientMTMBCTester.ini", "temp/bcmessaging/testframework/general/MMSClientMTMBCTester.ini"); |
|
33 copy($epoc . "winscw/c/testframework/MMSClientMTMBCTester_TestImage.jpg", "temp/bcmessaging/testframework/general/MMSClientMTMBCTester_TestImage.jpg"); |
|
34 copy($epoc . "release/winscw/udeb/PluginBioControlAPITest.dll", "temp/bcmessaging/winscw_udeb/PluginBioControlAPITest.dll"); |
|
35 copy($epoc . "winscw/c/testframework/tcTestUIBioCombiner.cfg", "temp/bcmessaging/testframework/general/tcTestUIBioCombiner.cfg"); |
|
36 copy($epoc . "winscw/c/testframework/ui_PluginBioControlAPITest.cfg", "temp/bcmessaging/testframework/general/ui_PluginBioControlAPITest.cfg"); |
|
37 copy($epoc . "winscw/c/testframework/test.txt", "temp/bcmessaging/testframework/general/test.txt"); |
|
38 copy($epoc . "winscw/c/testframework/PluginBioControlAPITest.rsc", "temp/bcmessaging/testframework/general/PluginBioControlAPITest.rsc"); |
|
39 copy($epoc . "data/z/resource/pluginbiocontrolapitest.rsc", "temp/bcmessaging/resource/general/pluginbiocontrolapitest.rsc"); |
|
40 copy($epoc . "data/z/resource/pluginbiocontrolapitest.r01", "temp/bcmessaging/resource/general/pluginbiocontrolapitest.r01"); |
|
41 |
|
42 system("7z a -tzip messaging.zip ./temp/*"); |