common/tools/ats/bctest/messagingmw/sendui/sendui.pl
author Maciej Seroka <maciejs@symbian.org>
Fri, 02 Oct 2009 12:09:35 +0100
changeset 567 515ee4687300
parent 435 9374c207cfee
child 633 9c627d501af4
permissions -rw-r--r--
Device NAME removed

#!/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 <brendand@symbian.org>
#
# Description:
# Script to build ATS test drop for BC Profiles Engine tests


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

unlink "sendui.zip";
##rmtree "temp";
mkpath "temp/bcsendui/general/testframework";
mkpath "temp/bcsendui/winscw_udeb";

my $epoc=$ENV{'EPOCROOT'} . "epoc32/";
copy("sendui.xml",	"temp/test.xml");

copy($epoc . "release/winscw/udeb/senduiapitest.dll",                   "temp/bcsendui/winscw_udeb/senduiapitest.dll");
copy($epoc . "winscw/c/testframework/testframework_sendui.ini",         "temp/bcsendui/general/testframework/testframework_sendui.ini");
copy($epoc . "winscw/c/testframework/ui_senduiapitest.cfg",             "temp/bcsendui/general/testframework/ui_senduiapitest.cfg");

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