forked from martinpaljak/ant-javacard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fails.xml
51 lines (49 loc) · 2 KB
/
fails.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." name="ant-javacard failed tests">
<include file="kits.xml"/>
<taskdef name="javacard" classname="pro.javacard.ant.JavaCard" classpath="ant-javacard.jar"/>
<!-- Different SDK/JDK incompatibilities -->
<target name="latestkit">
<javacard>
<cap jckit="${JC310}" sources="src/testapplets/integer" targetsdk="${JC222}">
<applet class="testapplets.integer.EmptyInt" aid="0102030405060708"/>
</cap>
</javacard>
</target>
<target name="newjdk">
<javacard>
<cap jckit="${JC304}" sources="src/testapplets/integer" targetsdk="${JC222}">
<applet class="testapplets.integer.EmptyInt" aid="0102030405060708"/>
</cap>
</javacard>
</target>
<target name="oldkit">
<javacard>
<cap jckit="${JC222}" sources="src/testapplets/integer" targetsdk="${JC221}">
<applet class="testapplets.integer.EmptyInt" aid="0102030405060708"/>
</cap>
</javacard>
</target>
<target name="noexport">
<javacard>
<cap jckit="${JC310}" sources="src/testapplets/integer" targetsdk="3.0.4" ints="true">
<applet class="testapplets.integer.EmptyInt" aid="0102030405060708"/>
</cap>
</javacard>
</target>
<!-- Library -->
<target name="test-library">
<javacard jckit="${JC305}">
<cap targetsdk="${JC304}" sources="src/testapplets/library" package="testapplets.library"
aid="01020304050607" export="testlib" version="0.1"/>
</javacard>
</target>
<target name="test-library-user" depends="test-library">
<javacard>
<cap jckit="${JC310}" sources="src/testapplets/libraryuser">
<applet class="testapplets.libraryuser.LibraryUser" aid="0102030405060708"/>
<import jar="testlib/library.jar"/>
</cap>
</javacard>
</target>
</project>