Update of /cvsroot/nice/Nice/testsuite/compiler/null
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25445/F:/nice/testsuite/compiler/null
Modified Files:
inference.testsuite
Log Message:
Added the rest of the obvious failure locations.
Index: inference.testsuite
===================================================================
RCS file: /cvsroot/nice/Nice/testsuite/compiler/null/inference.testsuite,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** inference.testsuite 12 Mar 2005 19:24:46 -0000 1.13
--- inference.testsuite 13 Mar 2005 15:27:43 -0000 1.14
***************
*** 140,144 ****
if (x != null)
x = x + "";
! y = y + "";
--- 140,144 ----
if (x != null)
x = x + "";
! y = y /*/// FAIL HERE */ + "";
***************
*** 293,297 ****
if (x1 != null && x2 != null)
x1 = x1 + "";
! y = y + "";
--- 293,297 ----
if (x1 != null && x2 != null)
x1 = x1 + "";
! y = y /*/// FAIL HERE */ + "";
***************
*** 328,332 ****
?String x1 = null;
while ( (x1 = null) == null)
! x1 = x1 + "";
--- 328,332 ----
?String x1 = null;
while ( (x1 = null) == null)
! x1 = x1 /*/// FAIL HERE */ + "";
|