common/tools/ats/bctest/locationsrv/landmarks_api/landmarks_api.pl
author Simon Howkins <simonh@symbian.org>
Wed, 27 Oct 2010 16:22:14 +0100
changeset 1284 0b4a09013baf
parent 552 8018a074606b
permissions -rw-r--r--
Added copyright messages

#!/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") or die "failed : $!";
copy($epoc . "winscw/c/testframework/TestFramework_Landmarks.ini",		"temp/landmarks/general/testframework/TestFramework_Landmarks.ini") or die "failed : $!";
copy($epoc . "winscw/c/testframework/testlandmarksapi.cfg",				"temp/landmarks/general/testframework/testlandmarksapi.cfg") or die "failed : $!";
copy($epoc . "winscw/c/testing/data/smiltemplate.mif",					"temp/landmarks/general/smiltemplate.mif") or die "failed : $!";
copy($epoc . "winscw/c/testing/data/testEposLmImport.lmx",				"temp/landmarks/general/testEposLmImport.lmx") or die "failed : $!";
copy($epoc . "winscw/c/testing/data/testEposLmImportCollection.lmx",	"temp/landmarks/general/testEposLmImportCollection.lmx") or die "failed : $!";

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