equal
deleted
inserted
replaced
|
1 <!-- |
|
2 # |
|
3 # Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
4 # All rights reserved. |
|
5 # This component and the accompanying materials are made available |
|
6 # under the terms of "Eclipse Public License v1.0" |
|
7 # which accompanies this distribution, and is available |
|
8 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
9 # |
|
10 # Initial Contributors: |
|
11 # Nokia Corporation - initial contribution. |
|
12 # |
|
13 # Contributors: |
|
14 # |
|
15 # Description: |
|
16 # |
|
17 --> |
|
18 |
|
19 <project name="SystemAmsTests" basedir="." default="backup"> |
|
20 |
|
21 |
|
22 <import file="../../../../../build/utilities.xml"/> |
|
23 |
|
24 <property environment="env"/> |
|
25 <property name="java.src.root" location="${env.JAVA_SRC_ROOT}"/> |
|
26 <property name="java.bin.root" location="${env.JAVA_BIN_ROOT}"/> |
|
27 |
|
28 <property name="certs.state.dir" location="/epoc32/winscw/c/private/200211dc/security/trustroots/device/state"/> |
|
29 <property name="test.tmp.dir" location="../tmp/"/> |
|
30 |
|
31 <target name="backup"> |
|
32 <mkdir dir="${test.tmp.dir}"/> |
|
33 <copy todir="${test.tmp.dir}"> |
|
34 <fileset dir="${certs.state.dir}"/> |
|
35 </copy> |
|
36 </target> |
|
37 |
|
38 <target name="cleanup"> |
|
39 <delete dir="${certs.state.dir}"/> |
|
40 <copy todir="${certs.state.dir}"> |
|
41 <fileset dir="${test.tmp.dir}"/> |
|
42 </copy> |
|
43 <delete dir="${test.tmp.dir}"/> |
|
44 </target> |
|
45 |
|
46 |
|
47 </project> |