common/tools/ats/bctest/shortlinksrv/shortlinksrv.pl
author Maciej Seroka <maciejs@symbian.org>
Fri, 20 Aug 2010 09:07:26 +0100
changeset 1196 c0b9bf290520
child 1199 26c4732f6e56
permissions -rw-r--r--
Added Shortlink Services BC test suite

#!/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 <maciejs@symbian.org>
#
# Description:
# Script to build ATS test drop for Shortlink Services tests


use strict;
use File::Copy;
use File::Path;

unlink "shortlinksrvtest.zip";
rmtree "temp";
mkpath "temp/shortlinksrvtest/bluetooth/general";
mkpath "temp/shortlinksrvtest/winscw_udeb";

my $epoc=$ENV{'EPOCROOT'} . "epoc32/";
copy("shortlinksrv.xml",	"temp/test.xml");
copy($epoc . "release/winscw/udeb/T_BTSockAddrAPI.exe",				"temp/shortlinksrvtest/winscw_udeb/T_BTSockAddrAPI.exe") or die "failed : $!";
copy($epoc . "winscw/c/bluetooth/BT-SOCK-ADDR-PublicApi.script",	"temp/shortlinksrvtest/bluetooth/general/BT-SOCK-ADDR-PublicApi.script") or die "failed : $!";
copy($epoc . "winscw/c/bluetooth/BT-SOCK-ADDR-PublicApi.ini",		"temp/shortlinksrvtest/bluetooth/general/BT-SOCK-ADDR-PublicApi.ini") or die "failed : $!";

system("7z a -tzip shortlinksrvtest.zip ./temp/*");