# HG changeset patch # User Louis Henry Nayegon # Date 1252920094 -3600 # Node ID 6832752a1de3e31db556faa9940989d59fc73cd9 # Parent ce8efcf8834370f6c6b00fa9a595ab53ec688490 Update script header commnets Add system software tests diff -r ce8efcf88343 -r 6832752a1de3 common/tools/ats/bctest/contacts/phonebook/phonebook.pl --- a/common/tools/ats/bctest/contacts/phonebook/phonebook.pl Mon Sep 14 09:55:46 2009 +0100 +++ b/common/tools/ats/bctest/contacts/phonebook/phonebook.pl Mon Sep 14 10:21:34 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 ce8efcf88343 -r 6832752a1de3 common/tools/ats/bctest/drm/drm.pl --- a/common/tools/ats/bctest/drm/drm.pl Mon Sep 14 09:55:46 2009 +0100 +++ b/common/tools/ats/bctest/drm/drm.pl Mon Sep 14 10:21:34 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 ce8efcf88343 -r 6832752a1de3 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 Mon Sep 14 10:21:34 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 ce8efcf88343 -r 6832752a1de3 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 Mon Sep 14 10:21:34 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 ce8efcf88343 -r 6832752a1de3 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 Mon Sep 14 10:21:34 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 + +