[MERGE] Fix for running parallel tests on Mac OS X

Robert Collins robert.collins at canonical.com
Thu Jun 4 01:41:24 BST 2009


On Wed, 2009-06-03 at 06:13 -0400, John Szakmeister wrote:
> +    except Exception, e:
> +        pass 

This is faulty - it will hit ctrl-C. At minium you could fix it by doing
except (KeyboardInterrupt, SystemExit):
    raise
except Exception:
    pass

but better still would be to catch something more specific, like
IOError.

bb:resubmit

-Rob
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 197 bytes
Desc: This is a digitally signed message part
Url : https://lists.ubuntu.com/archives/bazaar/attachments/20090604/0d3955f5/attachment.pgp 


More information about the bazaar mailing list