common/tools/ats/bctest/browser/browser.pl
author Brendan Donegan brendand@symbian.org
Mon, 28 Sep 2009 15:16:29 +0100
changeset 525 5fdd56755c8a
parent 458 ef8c69f2539d
child 552 8018a074606b
permissions -rw-r--r--
put in rmtree to cleanup properly

#!/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 "browser.zip";
rmtree "temp";
mkpath "temp/bcbrowser/winscw_udeb";
mkpath "temp/bcbrowser/general/testframework";

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

copy($epoc . "release/winscw/udeb/favouritesbctest.dll",		"temp/bcbrowser/winscw_udeb/favouritesbctest.dll");
copy($epoc . "release/winscw/udeb/downloadmgrbctest.dll",		"temp/bcbrowser/winscw_udeb/downloadmgrbctest.dll");

copy($epoc . "winscw/c/testframework/testframework_dwmgr.ini",	"temp/bcbrowser/general/testframework/testframework_dwmgr.ini");

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