* tests/regression/jasmin/test_verify_fail_jsr_recursion.j: New test.
[cacao.git] / tests / regression / jasmin / Makefile.am
1 ## tests/regression/jasmin/Makefile.am
2 ##
3 ## Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
4 ## C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5 ## E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6 ## J. Wenninger, Institut f. Computersprachen - 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., 51 Franklin Street, Fifth Floor, Boston, MA
23 ## 02110-1301, USA.
24 ##
25 ## Contact: cacao@cacaojvm.org
26 ##
27 ## Authors: Christian Thalinger
28 ##
29 ## Changes: Edwin Steiner
30 ##
31 ## $Id$
32
33 ## Process this file with automake to produce Makefile.in
34
35 JAVA      = $(top_builddir)/src/cacao/cacao
36 JAVAFLAGS = -Xbootclasspath:$(top_builddir)/src/lib/classes/:$(CLASSPATH_GLIBJ_ZIP)
37
38 JASMIN_TESTS = \
39         $(srcdir)/test_coalesce_simple_store.j \
40         $(srcdir)/test_dup2.j \
41         $(srcdir)/test_dup2_x1.j \
42         $(srcdir)/test_dup2_x2.j \
43         $(srcdir)/test_dup.j \
44         $(srcdir)/test_dup_x1.j \
45         $(srcdir)/test_dup_x1_interface_slots.j \
46         $(srcdir)/test_dup_x2.j \
47         $(srcdir)/test_dup_x2_interface_slots.j \
48         $(srcdir)/test_dup_x2_to_dup_x1.j \
49         $(srcdir)/test.j \
50         $(srcdir)/test_iinc.j \
51         $(srcdir)/test_load_store_conflict_by_exception.j \
52         $(srcdir)/test_load_store_conflict_by_exception_not_thrown.j \
53         $(srcdir)/test_load_store_conflict.j \
54         $(srcdir)/test_load_store_conflict_via_dup.j \
55         $(srcdir)/test_load_store_conflict_via_swap.j \
56         $(srcdir)/test_many_monitors.j \
57         $(srcdir)/test_no_store_load_conflict.j \
58         $(srcdir)/test_no_store_store_conflict.j \
59         $(srcdir)/test_nullpointerexception_monitorexit.j \
60         $(srcdir)/test_simple_load_store.j \
61         $(srcdir)/test_store_load_conflict.j \
62         $(srcdir)/test_store_store_conflict_2.j \
63         $(srcdir)/test_store_store_conflict.j \
64         $(srcdir)/test_swap_interface_slots.j \
65         $(srcdir)/test_swap.j \
66         $(srcdir)/test_swap_locals.j \
67         $(srcdir)/test_verify_fail_aload_retaddress.j \
68         $(srcdir)/test_verify_fail_backward_with_new_on_stack.j \
69         $(srcdir)/test_verify_fail_double_local_index.j \
70         $(srcdir)/test_verify_fail_double_overwritten.j \
71         $(srcdir)/test_verify_fail_invoke_basic_type.j \
72         $(srcdir)/test_verify_fail_jsr_called_with_different_stackdepths.j \
73         $(srcdir)/test_verify_fail_jsr_exceptions.j \
74         $(srcdir)/test_verify_fail_jsr_handler_in_sub.j \
75         $(srcdir)/test_verify_fail_jsr_merge_subroutines.j \
76         $(srcdir)/test_verify_fail_jsr_merge_subroutines_via_stack.j \
77         $(srcdir)/test_verify_fail_jsr_polymorphic_pop.j \
78         $(srcdir)/test_verify_fail_jsr_recursion.j \
79         $(srcdir)/test_verify_fail_load_wrong_type.j \
80         $(srcdir)/test_verify_fail_load_wrong_type_within_block.j \
81         $(srcdir)/test_verify_fail_local_index.j \
82         $(srcdir)/test_verify_fail_long_local_index.j \
83         $(srcdir)/test_verify_fail_long_local.j \
84         $(srcdir)/test_verify_fail_long_overwritten.j \
85         $(srcdir)/test_verify_fail_retaddr_as_object.j \
86         $(srcdir)/test_verify_fail_ret_bad_type.j \
87         $(srcdir)/test_verify_fail_ret_uninit_var.j \
88         $(srcdir)/test_verify_fail_split_local.j \
89         $(srcdir)/test_verify_ok_jsr_handler_in_sub2.j \
90         $(srcdir)/test_verify_ok_jsr.j \
91         $(srcdir)/test_verify_ok_jsr_multiple_blocks.j \
92         $(srcdir)/test_verify_ok_jsr_pop.j \
93         $(srcdir)/test_verify_ok_jsr_push.j \
94         $(srcdir)/test_verify_ok_jsr_subroutine_loops_to_start.j \
95         $(srcdir)/test_verify_ok_jsr_swap.j \
96         $(srcdir)/test_verify_ok_jsr_through_variable.j \
97         $(srcdir)/test_verify_ok_overwrite_local_type.j \
98         $(srcdir)/test_verify_ok_untyped_local.j \
99         $(srcdir)/test_verify_unspecced_ok_backward_with_new_in_local.j \
100         $(srcdir)/test_verify_unspecced_ok_backward_with_new_on_stack.j \
101         $(srcdir)/test_verify_unspecced_ok_new_in_local_within_try.j
102
103
104
105 SOURCE_FILES = \
106         $(srcdir)/runtest \
107         $(srcdir)/show \
108         $(JASMIN_TESTS)
109
110 CLEANFILES = \
111         *.class \
112         TESTLOG TESTEXPECT TESTOUT TESTERR
113
114 check:
115         JAVA="$(JAVA)" JAVAFLAGS="$(JAVAFLAGS)" $(srcdir)/runtest $(JASMIN_TESTS)
116
117 ## Local variables:
118 ## mode: Makefile
119 ## indent-tabs-mode: t
120 ## c-basic-offset: 4
121 ## tab-width: 8
122 ## compile-command: "automake --add-missing"
123 ## End: