# HG changeset patch # User royt # Date 1253023616 -3600 # Node ID 4a19f67f9ac32535d6f3b7687c9dbbf7ab28845f # Parent 70cf3d9c6e517203132f4127a42bed577ec5dfa7 bctest drop added diff -r 70cf3d9c6e51 -r 4a19f67f9ac3 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 15:06:56 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 70cf3d9c6e51 -r 4a19f67f9ac3 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 15:06:56 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/*");