mirror of https://github.com/python/cpython
Try harder to provoke the exception since the ia64 buildbot still
doesn't reliably produce an exception.
This commit is contained in:
parent
209ea39d31
commit
249cbe794e
|
@ -33,6 +33,7 @@ try:
|
||||||
limit_set = 0
|
limit_set = 0
|
||||||
f = open(TESTFN, "wb")
|
f = open(TESTFN, "wb")
|
||||||
f.write("X" * 1024)
|
f.write("X" * 1024)
|
||||||
|
f.flush()
|
||||||
try:
|
try:
|
||||||
f.write("Y")
|
f.write("Y")
|
||||||
f.flush()
|
f.flush()
|
||||||
|
@ -43,6 +44,7 @@ try:
|
||||||
for i in range(5):
|
for i in range(5):
|
||||||
time.sleep(.1)
|
time.sleep(.1)
|
||||||
f.flush()
|
f.flush()
|
||||||
|
f.close()
|
||||||
except IOError:
|
except IOError:
|
||||||
if not limit_set:
|
if not limit_set:
|
||||||
raise
|
raise
|
||||||
|
|
Loading…
Reference in New Issue