- build/dist/install changes
[cacao.git] / tests / kaffe / Makefile.am
1 ## tests/kaffe/Makefile.am
2 ##
3 ## Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4 ## R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5 ## C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6 ## TU Wien
7 ##
8 ## This file is part of CACAO.
9 ##
10 ## This program is free software; you can redistribute it and/or
11 ## modify it under the terms of the GNU General Public License as
12 ## published by the Free Software Foundation; either version 2, or (at
13 ## your option) any later version.
14 ##
15 ## This program is distributed in the hope that it will be useful, but
16 ## WITHOUT ANY WARRANTY; without even the implied warranty of
17 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ## General Public License for more details.
19 ##
20 ## You should have received a copy of the GNU General Public License
21 ## along with this program; if not, write to the Free Software
22 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23 ## 02111-1307, USA.
24 ##
25 ## Contact: cacao@complang.tuwien.ac.at
26 ##
27 ## Authors: Christian Thalinger
28 ##
29 ## Changes:
30 ##
31 ## $Id: Makefile.am 1676 2004-12-03 16:52:15Z twisti $
32
33 ## Process this file with automake to produce Makefile.in
34
35 TESTS_ENVIRONMENT = $(SHELL) TestScript
36
37 ALWAYS_TESTS = HelloWorldApp.class.save \
38         HelloWorldApp.java \
39         TestIntLong.java \
40         TestFloatDouble.java \
41         DoubleCvt.java \
42         DoubleNeg.java \
43         DoubleConst.java \
44         DoublePrint.java \
45         DoubleComp.java \
46         ModuloTest.java \
47         LongNeg.java \
48         FPUStack.java \
49         divtest.java \
50         Str.java \
51         Str2.java \
52         InternHog.java \
53         IndexTest.java \
54         StackDump.java \
55         tname.java \
56         ttest.java \
57         ThreadState.java \
58         UncaughtException.java \
59         ReflectInterfaces.java \
60         InnerTest.java \
61         SerialUID.java \
62         TestSerializable.java \
63         TestSerializable2.java \
64         TestCasts.java \
65         Alias.java \
66         NullPointerTest.java \
67         NullInvoke.java \
68         TableSwitch.java \
69         LostFrame.java \
70         ConstructorTest.java \
71         burford.java \
72         IllegalInterface.java \
73         GetInterfaces.java \
74         IntfTest.java \
75         SignedShort.java \
76         CharCvt.java \
77         BadFloatTest.java \
78         ProcessTest.java \
79         UDPTest.java \
80         SoTimeout.java \
81         wc.java \
82         FileTest.java \
83         FileChecks.java \
84         finalexc.java \
85         finaltest.java \
86         finaltest2.java \
87         forNameTest.java \
88         LoaderTest.java \
89         ArrayForName.java \
90         KaffeVerifyBug.java \
91         Schtum.java \
92         Reflect.java \
93         MethodBug.java \
94         Bean.java \
95         SortTest.java \
96         HashTest.java \
97         MapTest.java \
98         URLTest.java \
99         PropertiesTest.java \
100         ReaderTest.java \
101         CharArrayReaderTest.java \
102         LineNumberReaderTest.java \
103         BufferedReaderTest.java \
104         ReaderReadVoidTest.java \
105         PipeTest.java \
106         GetField.java \
107         ReflectInvoke.java \
108         InvTarExcTest.java \
109         SystemLoaderTest.java \
110         CLTest.java \
111         CLTestConc.java \
112         CLTestJLock.java \
113         CLTestLie.java \
114         CLTestFindLoaded.java \
115         ExceptionTest.java \
116         ExceptionTestClassLoader.java \
117         ExceptionTestClassLoader2.java \
118         TestClassRef.java \
119         ClassGC.java \
120         GCTest.java \
121         ThreadLocalTest.java \
122         BeanBug.java \
123         BitSetTest.java \
124         ExceptionInInitializerTest.java \
125         InitTest.java \
126         ProcessClassTest.java \
127         ProcessClassInst.java \
128         ProcessClassStop.java \
129         FindSystemClass.java \
130         ProcessClassLockTest.java \
131         DoubleBug.java \
132         TestUnlock.java \
133         MarkResetTest.java \
134         HashtableTest1.java \
135         ReflectMultiArray.java \
136         ExecTest.java \
137         ThreadStop.java \
138         DeadThread.java \
139         tthrd1.java \
140         SoInterrupt.java \
141         sysdepCallMethod.java \
142         TestNative.java
143
144 XFAIL_TESTS =
145
146 TESTS = $(ALWAYS_TESTS)
147
148 EXTRA_DIST = TestScript $(ALWAYS_TESTS) \
149         CLTestConc_run.java \
150         ZipVerifyUtils.java \
151         ClassGCTest.java \
152         ClassGCTestLater.java \
153         LoaderTest_Class0.java \
154         LoaderTest_Class1.java \
155         LoaderTest_Class1BeanInfo.java \
156         LoaderTest_Class2.java \
157         LoaderTest_Class3.java \
158         LoaderTest_Loader1.java \
159         LoaderTest_Loader2.java
160
161 CLEANFILES = *.class *.fail *.out core *.core ExceptionTest ziptest1.zip \
162         ziptest2.zip frozen_serial *.tmp
163
164
165 ## Local variables:
166 ## mode: Makefile
167 ## indent-tabs-mode: t
168 ## c-basic-offset: 4
169 ## tab-width: 8
170 ## compile-command: "automake --add-missing"
171 ## End: