fix DeleteGlobalRef missing argument for IdentityHashMap.put
[cacao.git] / tests / Makefile.am
index c0e48a49f3dc3dbe1365e6fcad06fca9c7dbbde6..69f30f145c4f54d282d3e386b418afbf132acf71 100644 (file)
@@ -1,15 +1,73 @@
-EXTRA_DIST = x.java x.output jctest.java fptest.java
+## tests/Makefile.am
+##
+## Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
+## R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
+## C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
+## Institut f. Computersprachen - TU Wien
+##
+## This file is part of CACAO.
+##
+## This program is free software; you can redistribute it and/or
+## modify it under the terms of the GNU General Public License as
+## published by the Free Software Foundation; either version 2, or (at
+## your option) any later version.
+##
+## This program is distributed in the hope that it will be useful, but
+## WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+## General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software
+## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+## 02111-1307, USA.
+##
+## Contact: cacao@complang.tuwien.ac.at
+##
+## Authors: Christian Thalinger
+##
+## Changes:
+##
+## $Id: Makefile.am 3057 2005-07-18 22:34:58Z twisti $
 
-check_DATA = checkall
+## Process this file with automake to produce Makefile.in
 
-checkall: x.tst jctest.tst GCBench.tstrun
+SUBDIRS = codepatching native regression
+
+EXTRA_DIST = \
+       x.java x.output \
+       jctest.java jctest.output \
+       fptest.java fptest.output \
+       fp.java fp.output \
+       extest.java extest.output extest.2output\
+       TestBase.java TestArrayClasses.java TestArrayClasses.output \
+       BasicToStrings.java BasicToStrings.output \
+       GCBench.java \
+       JavaPerformance.java \
+       param_test.java
+
+JAVA = $(top_builddir)/src/cacao/cacao
+JAVAC = jikes -nowarn
+
+checkall: x.tst jctest.tst fptest.tst fp.tst extest.tst TestArrayClasses.tst BasicToStrings.tst param_test.tst
 
 %.tst:
-       ../cacao -ieee sun.tools.javac.Main $*.java
-       ../cacao -ieee $* >$*.thisoutput
-       diff --brief $*.thisoutput $*.output
-       rm -f $*.thisoutput
+       $(JAVAC) $*.java
+       sh Test.sh $(JAVA) $*
+#      $(JAVA) $* > $*.thisoutput
+#      diff --brief $*.output $*.thisoutput
+       $(RM) $*.thisoutput
+       $(RM) $*.this2output
 
 %.tstrun:
-       ../cacao -ieee sun.tools.javac.Main $*.java
-       ../cacao -ieee $*
+       $(JAVAC) $*.java
+       $(JAVA) $*
+
+
+## Local variables:
+## mode: Makefile
+## indent-tabs-mode: t
+## c-basic-offset: 4
+## tab-width: 8
+## compile-command: "automake --add-missing"
+## End: