Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit 3ff0540

Browse files
committed
urltest: Don't exit suite if encountered a URL error
1 parent 9581b6a commit 3ff0540

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

tests/urltest.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,9 @@ def testURLFetch(self):
415415
except AssertionError:
416416
print "%s-%s FAILED." % (label, arch)
417417
assertions += 1
418+
except Exception, e:
419+
print "%s-%s ERROR." % (label, arch)
420+
assertions += 1
418421

419422
if assertions != 0:
420423
raise AssertionError("Found %d errors in URL suite." % assertions)

0 commit comments

Comments
 (0)