# HG changeset patch # User Shabe Razvi # Date 1253035104 -3600 # Node ID d6e41da686164e25f95b1de5eb1376c91a648d37 # Parent a95e14867851dfa7eb36c2058e1999d9d45e0476# Parent ab0e196dc2a6171559f5fb35fac0e1c57f4a9ff6 Merge diff -r ab0e196dc2a6 -r d6e41da68616 .hgtags --- a/.hgtags Tue Sep 15 18:12:03 2009 +0100 +++ b/.hgtags Tue Sep 15 18:18:24 2009 +0100 @@ -1,3 +1,4 @@ 29394d95b3e1a63e73a3f3e31f9bab42cc1437f5 fbf_configs_0.0.a 36d82a2f1f927cbe91926e19c69fe74d9170b7de PDK_2.0.c 633b96a83005daab9464a00b8fcbcfa96a247c26 PDK_2.0.d +cc2965329dd1c545c3cad90c83f2c8cf2bc7e2d6 PDK_2.0.e diff -r ab0e196dc2a6 -r d6e41da68616 common/build.test.xml --- a/common/build.test.xml Tue Sep 15 18:12:03 2009 +0100 +++ b/common/build.test.xml Tue Sep 15 18:18:24 2009 +0100 @@ -172,7 +172,7 @@ - + @@ -185,4 +185,9 @@ + + + + + diff -r ab0e196dc2a6 -r d6e41da68616 common/build.xml --- a/common/build.xml Tue Sep 15 18:12:03 2009 +0100 +++ b/common/build.xml Tue Sep 15 18:18:24 2009 +0100 @@ -13,7 +13,6 @@ - @@ -28,6 +27,18 @@ + + + + + + + + + + + + diff -r ab0e196dc2a6 -r d6e41da68616 common/common_props.ant.xml --- a/common/common_props.ant.xml Tue Sep 15 18:12:03 2009 +0100 +++ b/common/common_props.ant.xml Tue Sep 15 18:18:24 2009 +0100 @@ -59,6 +59,7 @@ + diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/browser/browser.pl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/browser/browser.pl Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,31 @@ +#!/usr/bin/perl +# Copyright (c) 2009 Symbian Foundation Ltd +# This component and the accompanying materials are made available +# under the terms of the License "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Symbian Foundation Ltd - initial contribution. +# +# Contributors: +# Brendan Donegan +# +# Description: +# Script to build ATS test drop for BC Profiles Engine tests + + +use strict; +use File::Copy; +use File::Path; + +unlink "browser.zip"; +##rmtree "temp"; +mkpath "temp/bcbrowser/winscw_udeb"; + +my $epoc=$ENV{'EPOCROOT'} . "epoc32/"; +copy("browser.xml", "temp/test.xml"); + +copy($epoc . "release/winscw/udeb/favouritesbctest.dll", "temp/bcbrowser/winscw_udeb/favouritesbctest.dll"); + +system("7z a -tzip browser.zip ./temp/*"); \ No newline at end of file diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/browser/browser.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/browser/browser.xml Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,58 @@ + + + 1 + admin + 10 + + Browser BC Tests + + + + + + + + + + + + + + + makedir + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + + + bcwebsrv/winscw_udeb/favouritesbctest.dll + + \ No newline at end of file diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/contacts/phonebook/phonebook.pl --- a/common/tools/ats/bctest/contacts/phonebook/phonebook.pl Tue Sep 15 18:12:03 2009 +0100 +++ b/common/tools/ats/bctest/contacts/phonebook/phonebook.pl Tue Sep 15 18:18:24 2009 +0100 @@ -12,7 +12,7 @@ # Louis Henry Nayegon # # Description: -# Script to build ATS test drop multimedia svs tests +# Script to build ATS test drop contacts phonebook tests use strict; diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/drm/drm.pl --- a/common/tools/ats/bctest/drm/drm.pl Tue Sep 15 18:12:03 2009 +0100 +++ b/common/tools/ats/bctest/drm/drm.pl Tue Sep 15 18:18:24 2009 +0100 @@ -12,7 +12,7 @@ # Louis Henry Nayegon # # Description: -# Script to build ATS test drop multimedia svs tests +# Script to build ATS test drop DRM tests use strict; diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/locationsrv/landmarks_api/landmarks.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/locationsrv/landmarks_api/landmarks.xml Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,108 @@ + + + 1 + admin + 10 + + Landmarks API BCTests + + + + + + + + + + + + + + + makedir + + + + + + install + + + + + + + + + install + + + + + + + + + install + + + + + + + + + install + + + + + + + + + install + + + + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + + + landmarks/winscw_udeb/testlandmarksapi.dll + landmarks/general/testframework/TestFramework_Landmarks.ini + landmarks/general/testframework/testlandmarksapi.cfg + landmarks/general/smiltemplate.mif + landmarks/general/testEposLmImport.lmx + landmarks/general/testEposLmImportCollection.lmx + + diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/locationsrv/landmarks_api/landmarks_api.pl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/locationsrv/landmarks_api/landmarks_api.pl Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,34 @@ +#!/usr/bin/perl +# Copyright (c) 2009 Symbian Foundation Ltd +# This component and the accompanying materials are made available +# under the terms of the License "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Symbian Foundation Ltd - initial contribution. +# +# Description: +# Script to build ATS test drop for landmarks_api tests + + +use strict; +use File::Copy; +use File::Path; + +unlink "landmarks_api.zip"; +##rmtree "temp"; +mkpath "temp/landmarks/general/testframework"; +mkpath "temp/landmarks/winscw_udeb"; + +my $epoc=$ENV{'EPOCROOT'} . "epoc32/"; +copy("landmarks.xml", "temp/test.xml"); + +copy($epoc . "release/winscw/udeb/testlandmarksapi.dll", "temp/landmarks/winscw_udeb/testlandmarksapi.dll"); +copy($epoc . "winscw/c/testframework/TestFramework_Landmarks.ini", "temp/landmarks/general/testframework/TestFramework_Landmarks.ini"); +copy($epoc . "winscw/c/testframework/testlandmarksapi.cfg", "temp/landmarks/general/testframework/testlandmarksapi.cfg"); +copy($epoc . "winscw/c/testing/data/smiltemplate.mif", "temp/landmarks/general/smiltemplate.mif"); +copy($epoc . "winscw/c/testing/data/testEposLmImport.lmx", "temp/landmarks/general/testEposLmImport.lmx"); +copy($epoc . "winscw/c/testing/data/testEposLmImportCollection.lmx", "temp/landmarks/general/testEposLmImportCollection.lmx"); + +system("7z a -tzip landmarks_api.zip ./temp/*"); diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/locationsrv/lmdbmanagement/lmdbmanagement.pl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/locationsrv/lmdbmanagement/lmdbmanagement.pl Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,34 @@ +#!/usr/bin/perl +# Copyright (c) 2009 Symbian Foundation Ltd +# This component and the accompanying materials are made available +# under the terms of the License "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Symbian Foundation Ltd - initial contribution. +# +# Contributors: +# Maciej Seroka +# +# Description: +# Script to build ATS test drop Landmarks Database Management BC tests + + +use strict; +use File::Copy; +use File::Path; + +unlink "lmdbmanagementtest.zip"; +##rmtree "temp"; +mkpath "temp/lmdbmanagementtest/general/testframework"; +mkpath "temp/lmdbmanagementtest/winscw_udeb"; + +my $epoc=$ENV{'EPOCROOT'} . "epoc32/"; +copy("lmdbmanagement.xml", "temp/test.xml"); + +copy($epoc . "release/winscw/udeb/testdbmanagementapi.dll", "temp/lmdbmanagementtest/winscw_udeb/testdbmanagementapi.dll"); +copy($epoc . "winscw/c/testframework/testframework_lmdbmanagement.ini", "temp/lmdbmanagementtest/general/testframework/testframework_lmdbmanagement.ini"); +copy($epoc . "winscw/c/testframework/testdbmanagementapi.cfg", "temp/lmdbmanagementtest/general/testframework/testdbmanagementapi.cfg"); + +system("7z a -tzip lmdbmanagementtest.zip ./temp/*"); diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/locationsrv/lmdbmanagement/lmdbmanagement.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/locationsrv/lmdbmanagement/lmdbmanagement.xml Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,80 @@ + + + 1 + admin + 10 + + Landmarks Database Management BC Tests + + + + + + + + + + + + + + + makedir + + + + + + install + + + + + + + + + install + + + + + + + + + install + + + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + + + lmdbmanagementtest/winscw_udeb/testdbmanagementapi.dll + lmdbmanagementtest/general/testframework/testframework_lmdbmanagement.ini + lmdbmanagementtest/general/testframework/testdbmanagementapi.cfg + + diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/locationsrv/lmsearch/lmsearch.pl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/locationsrv/lmsearch/lmsearch.pl Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,34 @@ +#!/usr/bin/perl +# Copyright (c) 2009 Symbian Foundation Ltd +# This component and the accompanying materials are made available +# under the terms of the License "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Symbian Foundation Ltd - initial contribution. +# +# Contributors: +# Maciej Seroka +# +# Description: +# Script to build ATS test drop Landmarks Search BC tests + + +use strict; +use File::Copy; +use File::Path; + +unlink "lmsearchtest.zip"; +##rmtree "temp"; +mkpath "temp/lmsearchtest/general/testframework"; +mkpath "temp/lmsearchtest/winscw_udeb"; + +my $epoc=$ENV{'EPOCROOT'} . "epoc32/"; +copy("lmsearch.xml", "temp/test.xml"); + +copy($epoc . "release/winscw/udeb/testlmksearchapi.dll", "temp/lmsearchtest/winscw_udeb/testlmksearchapi.dll"); +copy($epoc . "winscw/c/testframework/TestFramework_lmsearch.ini", "temp/lmsearchtest/general/testframework/TestFramework_lmsearch.ini"); +copy($epoc . "winscw/c/testframework/testlmksearchapi.cfg", "temp/lmsearchtest/general/testframework/testlmksearchapi.cfg"); + +system("7z a -tzip lmsearchtest.zip ./temp/*"); diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/locationsrv/lmsearch/lmsearch.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/locationsrv/lmsearch/lmsearch.xml Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,78 @@ + + + 1 + admin + 10 + + Landmarks Search BC Tests + + + + + + + + + + + + + + + makedir + + + + + + install + + + + + + + + + install + + + + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + + + lmsearchtest/winscw_udeb/testlmksearchapi.dll + lmsearchtest/general/testframework/TestFramework_lmsearch.ini + lmsearchtest/general/testframework/testlmksearchapi.cfg + + diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/locationsrv/locblid/locblid.pl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/locationsrv/locblid/locblid.pl Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,35 @@ +#!/usr/bin/perl +# Copyright (c) 2009 Symbian Foundation Ltd +# This component and the accompanying materials are made available +# under the terms of the License "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Symbian Foundation Ltd - initial contribution. +# +# Contributors: +# Maciej Seroka +# +# Description: +# Script to build ATS test drop BLID Application Satellite Info BC tests + + +use strict; +use File::Copy; +use File::Path; + +unlink "locblidtest.zip"; +##rmtree "temp"; +mkpath "temp/locblidtest/general/testframework"; +mkpath "temp/locblidtest/winscw_udeb"; + +my $epoc=$ENV{'EPOCROOT'} . "epoc32/"; +copy("locblid.xml", "temp/test.xml"); + +copy($epoc . "release/winscw/udeb/BCBlidTest.dll", "temp/locblidtest/winscw_udeb/BCBlidTest.dll"); +copy($epoc . "winscw/c/testframework/testframework_locblid.ini", "temp/locblidtest/general/testframework/testframework_locblid.ini"); +copy($epoc . "winscw/c/testframework/tcLmkBlid.cfg", "temp/locblidtest/general/testframework/tcLmkBlid.cfg"); +copy($epoc . "winscw/c/testframework/UI_BCBLid.cfg", "temp/locblidtest/general/testframework/UI_BCBLid.cfg"); + +system("7z a -tzip locblidtest.zip ./temp/*"); diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/locationsrv/locblid/locblid.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/locationsrv/locblid/locblid.xml Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,88 @@ + + + 1 + admin + 10 + + Basic Location Info Display (BLID) Application Satellite Info BC Tests + + + + + + + + + + + + + + + makedir + + + + + + install + + + + + + + + + install + + + + + + + + + install + + + + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + + + locblidtest/winscw_udeb/BCBlidTest.dll + locblidtest/general/testframework/testframework_locblid.ini + locblidtest/general/testframework/UI_BCBLid.cfg + locblidtest/general/testframework/tcLmkBlid.cfg + + diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/messagingmw/sendui/sendui.pl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/messagingmw/sendui/sendui.pl Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,34 @@ +#!/usr/bin/perl +# Copyright (c) 2009 Symbian Foundation Ltd +# This component and the accompanying materials are made available +# under the terms of the License "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Symbian Foundation Ltd - initial contribution. +# +# Contributors: +# Brendan Donegan +# +# Description: +# Script to build ATS test drop for BC Profiles Engine tests + + +use strict; +use File::Copy; +use File::Path; + +unlink "sendui.zip"; +##rmtree "temp"; +mkpath "temp/bcsendui/general/testframework"; +mkpath "temp/bcsendui/winscw_udeb"; + +my $epoc=$ENV{'EPOCROOT'} . "epoc32/"; +copy("sendui.xml", "temp/test.xml"); + +copy($epoc . "release/winscw/udeb/senduiapitest.dll", "temp/bcsendui/winscw_udeb/senduiapitest.dll"); +copy($epoc . "winscw/c/testframework/testframework_sendui.ini", "temp/bcsendui/general/testframework/testframework_sendui.ini"); +copy($epoc . "winscw/c/testframework/ui_senduiapitest.cfg", "temp/bcsendui/general/testframework/ui_senduiapitest.cfg"); + +system("7z a -tzip sendui.zip ./temp/*"); \ No newline at end of file diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/messagingmw/sendui/sendui.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/messagingmw/sendui/sendui.xml Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,78 @@ + + + 1 + admin + 10 + + Send UI BC Tests + + + + + + + + + + + + + + + makedir + + + + + + install + + + + + + + + + install + + + + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + + + bcsendui/winscw_udeb/senduiapitest.dll + bcsendui/general/testframework/testframework_sendui.ini + bcsendui/general/testframework/ui_senduiapitest.cfg + + \ No newline at end of file diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/pim/clock/clock.pl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/pim/clock/clock.pl Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,36 @@ +#!/usr/bin/perl +# Copyright (c) 2009 Symbian Foundation Ltd +# This component and the accompanying materials are made available +# under the terms of the License "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Symbian Foundation Ltd - initial contribution. +# +# Contributors: +# Louis Henry Nayegon +# +# Description: +# Script to build ATS test drop contacts phonebook tests + + +use strict; +use File::Copy; +use File::Path; + +unlink "clocktest.zip"; +##rmtree "temp"; +mkpath "temp/clocktest/general/testframework"; +mkpath "temp/clocktest/general/bcardtest2"; +mkpath "temp/clocktest/winscw_udeb/z/resource/plugins"; + +my $epoc=$ENV{'EPOCROOT'} . "epoc32/"; +copy("clock.xml", "temp/test.xml"); + +copy($epoc . "release/winscw/udeb/bctestclock.dll", "temp/clocktest/winscw_udeb/bctestclock.dll"); +copy($epoc . "winscw/c/testframework/testframework_pimclock.ini", "temp/clocktest/general/testframework/testframework_pimclock.ini"); +copy($epoc . "winscw/c/testframework/tcbctestclock.cfg", "temp/clocktest/general/testframework/tcbctestclock.cfg"); +copy($epoc . "winscw/c/testframework/ui_bctestclock.cfg", "temp/clocktest/general/testframework/ui_bctestclock.cfg"); + +system("7z a -tzip clocktest.zip ./temp/*"); diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/pim/clock/clock.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/pim/clock/clock.xml Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,88 @@ + + + 1 + admin + 10 + + PIM Clock BC Tests + + + + + + + + + + + + + + + makedir + + + + + + install + + + + + + + + + install + + + + + + + + + install + + + + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + + + clocktest/winscw_udeb/bctestclock.dll + clocktest/general/testframework/testframework_pimclock.ini + clocktest/general/testframework/tcbctestclock.cfg + clocktest/general/testframework/ui_bctestclock.cfg + + diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/systemsw/group.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/systemsw/group.txt Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,13 @@ +sf/os/devicesrv/devicesrv_pub/feature_discovery_api/tsrc/bc/featurediscovery/group +sf/os/devicesrv/devicesrv_pub/find_item_api/tsrc/bc/finditem/group +sf/os/devicesrv/devicesrv_pub/light_api/tsrc/bc/light/group +sf/mw/appsupport/appsupport_pub/network_status_api/tsrc/bc/networkstatus/group +sf/os/devicesrv/devicesrv_pub/phone_parser_api/tsrc/bc/phoneparser/group +sf/os/devicesrv/devicesrv_pub/platform_environment_api/tsrc/bc/platformenv/group +sf/os/devicesrv/devicesrv_pub/hwrm_power_state_api/tsrc/bc/powerstate/group +sf/os/devicesrv/devicesrv_pub/sysutil_api/tsrc/bc/sysutil/group +sf/os/devicesrv/devicesrv_pub/text_resolver_api/tsrc/bc/textresolver/group +sf/os/devicesrv/devicesrv_pub/vibra_api/tsrc/bc/vibra/group +sf/os/devicesrv/resourcemgmt/tsrc/public/basic/group +sf/os/devicesrv/devicesrv_pub/version_info_api/tsrc/bc/platformvertest/group +sf/os/devicesrv/devicesrv_pub/accessory_monitoring_api/tsrc/bc/accmonapibctests/group diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/systemsw/systemsw.pl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/systemsw/systemsw.pl Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,43 @@ +#!/usr/bin/perl +# Copyright (c) 2009 Symbian Foundation Ltd +# This component and the accompanying materials are made available +# under the terms of the License "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Symbian Foundation Ltd - initial contribution. +# +# Contributors: +# Louis Henry Nayegon +# +# Description: +# Script to build ATS test drop system software tests + + +use strict; +use File::Copy; +use File::Path; + +unlink "systemswtest.zip"; +rmtree "temp"; +mkpath "temp/systemswtest/winscw_udeb"; + +my $epoc=$ENV{'EPOCROOT'} . "epoc32/"; +copy("systemsw.xml", "temp/test.xml"); + +copy($epoc . "release/winscw/udeb/featuremanagertest.dll", "temp/systemswtest/winscw_udeb/featuremanagertest.dll"); +copy($epoc . "release/winscw/udeb/finditemenginetest.dll", "temp/systemswtest/winscw_udeb/finditemenginetest.dll"); +copy($epoc . "release/winscw/udeb/light.dll", "temp/systemswtest/winscw_udeb/light.dll"); +copy($epoc . "release/winscw/udeb/networkstatustest.dll", "temp/systemswtest/winscw_udeb/networkstatustest.dll"); +copy($epoc . "release/winscw/udeb/phoneparsertest.dll", "temp/systemswtest/winscw_udeb/phoneparsertest.dll"); +copy($epoc . "release/winscw/udeb/platformenvtest.dll", "temp/systemswtest/winscw_udeb/platformenvtest.dll"); +copy($epoc . "release/winscw/udeb/powerstatetest.dll", "temp/systemswtest/winscw_udeb/powerstatetest.dll"); +copy($epoc . "release/winscw/udeb/sysutiltest.dll", "temp/systemswtest/winscw_udeb/sysutiltest.dll"); +copy($epoc . "release/winscw/udeb/stiftextresolvertest.dll", "temp/systemswtest/winscw_udeb/stiftextresolvertest.dll"); +copy($epoc . "release/winscw/udeb/hwresmantest.dll", "temp/systemswtest/winscw_udeb/hwresmantest.dll"); +copy($epoc . "release/winscw/udeb/vibractrltest.dll", "temp/systemswtest/winscw_udeb/vibractrltest.dll"); +copy($epoc . "release/winscw/udeb/platformvertest.dll", "temp/systemswtest/winscw_udeb/platformvertest.dll"); +copy($epoc . "release/winscw/udeb/accmonapibctests.dll", "temp/systemswtest/winscw_udeb/accmonapibctests.dll"); + +system("7z a -tzip systemswtest.zip ./temp/*"); diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/systemsw/systemsw.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/systemsw/systemsw.xml Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,442 @@ + + + 1 + admin + 10 + + System Software BC Tests + + + + + + + + + + + + + + + makedir + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + makedir + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + makedir + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + makedir + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + makedir + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + makedir + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + makedir + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + makedir + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + makedir + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + makedir + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + makedir + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + makedir + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + makedir + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + + + systemswtest/winscw_udeb/featuremanagertest.dll + + diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/websrv/websrv.pl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/websrv/websrv.pl Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,38 @@ +#!/usr/bin/perl +# Copyright (c) 2009 Symbian Foundation Ltd +# This component and the accompanying materials are made available +# under the terms of the License "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Symbian Foundation Ltd - initial contribution. +# +# Contributors: +# Brendan Donegan +# Maciej Seroka +# +# Description: +# Script to build ATS test drop for BC Web Services tests + + +use strict; +use File::Copy; +use File::Path; + +unlink "websrv.zip"; +##rmtree "temp"; +mkpath "temp/bcwebsrv/general/testframework"; +mkpath "temp/bcwebsrv/winscw_udeb"; + +my $epoc=$ENV{'EPOCROOT'} . "epoc32/"; +copy("websrv.xml", "temp/test.xml"); + +copy($epoc . "release/winscw/udeb/CSenServiceConnectionBCTest.dll", "temp/bcwebsrv/winscw_udeb/CSenServiceConnectionBCTest.dll"); +copy($epoc . "winscw/c/testframework/testframework_connection.ini", "temp/bcwebsrv/general/testframework/testframework_connection.ini"); +copy($epoc . "release/winscw/udeb/HostletConnectionBCTest.dll", "temp/bcwebsrv/winscw_udeb/HostletConnectionBCTest.dll"); +copy($epoc . "winscw/c/testframework/TestFramework_hostlet.ini", "temp/bcwebsrv/general/testframework/TestFramework_hostlet.ini"); +copy($epoc . "release/winscw/udeb/newsoapclassesbctest.dll", "temp/bcwebsrv/winscw_udeb/newsoapclassesbctest.dll"); +copy($epoc . "winscw/c/testframework/testframework_newsoapclasses.ini", "temp/bcwebsrv/general/testframework/testframework_newsoapclasses.ini"); + +system("7z a -tzip websrv.zip ./temp/*"); \ No newline at end of file diff -r ab0e196dc2a6 -r d6e41da68616 common/tools/ats/bctest/websrv/websrv.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/websrv/websrv.xml Tue Sep 15 18:18:24 2009 +0100 @@ -0,0 +1,158 @@ + + + 1 + admin + 10 + + Web Services BC Tests + + + + + + + + + + + + + + + makedir + + + + + + install + + + + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + + + makedir + + + + + + install + + + + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + + + makedir + + + + + + install + + + + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + + + bcwebsrv/winscw_udeb/csenserviceconnectionbctest.dll + bcwebsrv/general/testframework/testframework_connection.ini + bcwebsrv/winscw_udeb/hostletconnectionbctest.dll + bcwebsrv/general/testframework/testframework_hostlet.ini + bcwebsrv/winscw_udeb/newsoapclassesbctest.dll + bcwebsrv/general/testframework/testframework_newsoapclasses.ini + + \ No newline at end of file