[Nice-commit] Nice/testsuite/compiler/classes implements.testsuite,1.3,1.4
Brought to you by:
bonniot
From: <bo...@us...> - 2003-05-22 22:10:33
|
Update of /cvsroot/nice/Nice/testsuite/compiler/classes In directory sc8-pr-cvs1:/tmp/cvs-serv24263/testsuite/compiler/classes Modified Files: implements.testsuite Log Message: Modified tests that should fail in the future because of unimplemented method (compareTo). They already fail on the kaffe jvm. Index: implements.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/classes/implements.testsuite,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** implements.testsuite 2 Sep 2002 16:49:31 -0000 1.3 --- implements.testsuite 22 May 2003 22:10:30 -0000 1.4 *************** *** 37,49 **** use(new A()); /// Toplevel ! class A implements java.lang.Comparable {} ! void use(java.lang.Comparable c) {} /// PASS use(new A()); /// Toplevel ! interface I extends java.lang.Comparable {} class A implements I {} ! void use(java.lang.Comparable c) {} --- 37,49 ---- use(new A()); /// Toplevel ! class A implements java.lang.Cloneable {} ! void use(java.lang.Cloneable c) {} /// PASS use(new A()); /// Toplevel ! interface I extends java.lang.Cloneable {} class A implements I {} ! void use(java.lang.Cloneable c) {} |