# HG changeset patch # User Brendan Donegan brendand@symbian.org # Date 1252928809 -3600 # Node ID f9eb0ea5b237e7511201a0be8fec159b461a4c93 # Parent 6832752a1de3e31db556faa9940989d59fc73cd9 Added new web service BC tests diff -r 6832752a1de3 -r f9eb0ea5b237 common/tools/ats/bctest/websrv/websrv.pl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/websrv/websrv.pl Mon Sep 14 12:46:49 2009 +0100 @@ -0,0 +1,33 @@ +#!/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 "websrv.zip"; +##rmtree "temp"; +mkpath "temp/bcwebsrv/general/testframework"; +mkpath "temp/bcwebsrv/winscw_udeb"; + +my $epoc=$ENV{'EPOCROOT'} . "epoc32/"; +copy("websrv.xml", "temp/test.xml"); + +copy($epoc . "release/winscw/udeb/CSenServiceConnectionBCTest.dll", "temp/bcwebsrv/winscw_udeb/CSenServiceConnectionBCTest.dll"); +copy($epoc . "winscw/c/testframework/testframework_connection.ini", "temp/bcwebsrv/general/testframework/testframework_connection.ini"); + +system("7z a -tzip websrv.zip ./temp/*"); \ No newline at end of file diff -r 6832752a1de3 -r f9eb0ea5b237 common/tools/ats/bctest/websrv/websrv.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/bctest/websrv/websrv.xml Mon Sep 14 12:46:49 2009 +0100 @@ -0,0 +1,68 @@ + + + 1 + admin + 10 + + Web Services BC Tests + + + + + + + + + + + + + + + makedir + + + + + + install + + + + + + + + + install + + + + + + + + + execute + + + + + + + + + fetch-log + + + + + + + + + + bcwebsrv/winscw_udeb/csenserviceconnectionbctest.dll + bcwebsrv/general/testframework/testframework_connection.ini + + \ No newline at end of file