Update of /cvsroot/nice/Nice/testsuite/compiler/typing
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24293/testsuite/compiler/typing
Modified Files:
dti.testsuite
Log Message:
Fix testcase to avoid catching twice the same class of exception.
Index: dti.testsuite
===================================================================
RCS file: /cvsroot/nice/Nice/testsuite/compiler/typing/dti.testsuite,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** dti.testsuite 13 Aug 2004 17:11:36 -0000 1.2
--- dti.testsuite 6 Mar 2005 17:24:27 -0000 1.3
***************
*** 111,115 ****
} catch (Exception e) {
s = null;
! } catch (Exception e) {
s = "xyz";
} finally {
--- 111,115 ----
} catch (Exception e) {
s = null;
! } catch (Throwable e) {
s = "xyz";
} finally {
|