|
Message
From: cvs at opencores.org<cvs@o...>
Date: Sat Sep 16 17:23:08 CEST 2006
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/06/09 16:17:23 Added: jop/java/target/src/test/jdk DoAll.java Log: start JDK regression tests Revision Changes Path 1.1 jop/java/target/src/test/jdk/DoAll.java http://www.opencores.org/cvsweb.shtml/jop/java/target/src/test/jdk/DoAll.java?rev=1.1&content-type=text/x-cvsweb-markup Index: DoAll.java =================================================================== /* * Created on 30.07.2005 * */ package jdk; import jvm.TestCase; /** * @author Martin Schoeberl (martin@j...) * */ public class DoAll { public static void main(String[] args) { TestCase tc[] = { new HashCode(), }; for (int i=0; i<tc.length; ++i) { System.out.print(tc[i].getName()); if (tc[i].test()) { System.out.println(" ok"); } else { System.out.println(" failed!"); } } // jbe.DoAll.main(args); } }
|