<!--
#
# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
# All rights reserved.
# This component and the accompanying materials are made available
# under the terms of "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:
# Nokia Corporation - initial contribution.
#
# Contributors:
#
# Description:
#
-->
<project name="SystemAmsTests" basedir="." default="backup">
<import file="../../../../../build/utilities.xml"/>
<property environment="env"/>
<property name="java.src.root" location="${env.JAVA_SRC_ROOT}"/>
<property name="java.bin.root" location="${env.JAVA_BIN_ROOT}"/>
<property name="certs.state.dir" location="/epoc32/winscw/c/private/200211dc/security/trustroots/device/state"/>
<property name="test.tmp.dir" location="../tmp/"/>
<target name="backup">
<mkdir dir="${test.tmp.dir}"/>
<copy todir="${test.tmp.dir}">
<fileset dir="${certs.state.dir}"/>
</copy>
</target>
<target name="cleanup">
<delete dir="${certs.state.dir}"/>
<copy todir="${certs.state.dir}">
<fileset dir="${test.tmp.dir}"/>
</copy>
<delete dir="${test.tmp.dir}"/>
</target>
</project>