Update of /cvsroot/nice/Nice/testsuite/compiler/classes
In directory
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20234/testsuite/compiler/classes
Modified Files:
export.testsuite
Log Message:
Check that imported Java methods do not have missing implementations.
Be more clever about what Java methods not to test, to save time.
Index: export.testsuite
===================================================================
RCS file: /cvsroot/nice/Nice/testsuite/compiler/classes/export.testsuite,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** export.testsuite 30 Nov 2003 14:24:35 -0000 1.3
--- export.testsuite 24 Feb 2004 14:05:45 -0000 1.4
***************
*** 21,25 ****
/// package a
/// TOPLEVEL
! class A implements java.lang.Comparable {}
/// package b import a
{}
--- 21,27 ----
/// package a
/// TOPLEVEL
! class A implements java.lang.Comparable {
! compareTo(that) = 0;
! }
/// package b import a
{}
***************
*** 29,33 ****
/// TOPLEVEL
interface I {}
! class A implements I, java.lang.Comparable {}
/// package b import a
{}
--- 31,37 ----
/// TOPLEVEL
interface I {}
! class A implements I, java.lang.Comparable {
! compareTo(that) = 0;
! }
/// package b import a
{}
-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
|