[Nice-commit] Nice/testsuite/compiler/typing dti.testsuite,1.1,1.2
Brought to you by:
bonniot
From: Arjan B. <ar...@us...> - 2004-08-13 17:11:45
|
Update of /cvsroot/nice/Nice/testsuite/compiler/typing In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3511/F:/nice/testsuite/compiler/typing Modified Files: dti.testsuite Log Message: Added failure positions. Index: dti.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/typing/dti.testsuite,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dti.testsuite 12 Aug 2004 13:26:47 -0000 1.1 --- dti.testsuite 13 Aug 2004 17:11:36 -0000 1.2 *************** *** 28,32 **** s = null; ! s.substring(1); /// PASS bug --- 28,32 ---- s = null; ! s. /*/// FAIL HERE*/ substring(1); /// PASS bug *************** *** 76,80 **** } ! s.substring(1); /// FAIL --- 76,80 ---- } ! s. /*/// FAIL HERE*/ substring(1); /// FAIL *************** *** 99,106 **** try { s = null; ! maybeException(); s = "xyz"; } catch (Exception e) { ! s.substring(1); } --- 99,106 ---- try { s = null; ! maybeThrow(); s = "xyz"; } catch (Exception e) { ! s. /*/// FAIL HERE*/ substring(1); } *************** *** 108,112 **** ?String s = "abc"; try { ! maybeException(); } catch (Exception e) { s = null; --- 108,112 ---- ?String s = "abc"; try { ! maybeThrow(); } catch (Exception e) { s = null; *************** *** 114,118 **** s = "xyz"; } finally { ! s.substring(1); } --- 114,118 ---- s = "xyz"; } finally { ! s. /*/// FAIL HERE*/ substring(1); } *************** *** 122,126 **** int x = 0; while (x++ < 10) { ! s.substring(1); func = () => {s = null; }; func(); --- 122,126 ---- int x = 0; while (x++ < 10) { ! s. /*/// FAIL HERE*/ substring(1); func = () => {s = null; }; func(); |