# HG changeset patch # User Louis Henry Nayegon # Date 1252600952 -3600 # Node ID 7685cec9fd3cf251be236a4dc217d6c87e384f98 # Parent 2118454a7779d1b7b5258cbbc8c6138c7d6653a1# Parent bf5ebfaa40e4d362c71e774c4251a032094203b8 merge diff -r 2118454a7779 -r 7685cec9fd3c common/tools/ats/bctest/appsupport/profilesengine/profilesengine.pl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/appsupport/profilesengine/profilesengine.pl Thu Sep 10 17:42:32 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 "profilesengine.zip"; +##rmtree "temp"; +mkpath "temp/bcprofilesengine/general/testframework"; +mkpath "temp/bcprofilesengine/winscw_udeb"; + +my $epoc=$ENV{'EPOCROOT'} . "epoc32/"; +copy("profilesengine.xml", "temp/test.xml"); + +copy($epoc . "release/winscw/udeb/proengwrapapi.dll", "temp/bcprofilesengine/winscw_udeb/proengwrapapi.dll"); +copy($epoc . "winscw/c/testframework/testframework_proengwrapapi.ini", "temp/bcprofilesengine/general/testframework/testframework_proengwrapapi.ini"); +copy($epoc . "winscw/c/testframework/proengwrapapi.cfg", "temp/bcprofilesengine/general/testframework/proengwrapapi.cfg"); + +system("7z a -tzip profilesengine.zip ./temp/*"); \ No newline at end of file diff -r 2118454a7779 -r 7685cec9fd3c common/tools/ats/bctest/appsupport/profilesengine/profilesengine.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/appsupport/profilesengine/profilesengine.xml Thu Sep 10 17:42:32 2009 +0100 @@ -0,0 +1,78 @@ + + + 1 + admin + 10 + + Profiles Engine BC Tests + + + + + + + + + + + + + + + makedir + + + + + + install + + + + + + + + + install + + + + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + + + bcprofilesengine/winscw_udeb/proengwrapapi.dll + bcprofilesengine/general/testframework/testframework_proengwrapapi.ini + bcprofilesengine/general/testframework/proengwrapapi.cfg + + \ No newline at end of file