Update of /cvsroot/jython/bugtests
In directory usw-pr-cvs1:/tmp/cvs-serv28161
Modified Files:
test296.py
Log Message:
Throw an error instead of a warning now that the bug is fixed.
Index: test296.py
===================================================================
RCS file: /cvsroot/jython/bugtests/test296.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** test296.py 2001/07/14 21:26:33 1.1
--- test296.py 2001/07/18 10:53:26 1.2
***************
*** 10,13 ****
print test296p.abc
except java.lang.StackOverflowError:
! raise support.TestWarning("Shouldn't raise a Stack overflow")
--- 10,15 ----
print test296p.abc
except java.lang.StackOverflowError:
! raise support.TestError("Shouldn't raise a Stack overflow")
! except Exception:
! pass
|