How to handle exceptions in test cases / example applications?

Recently @pipping, @joe and @smuething where discussing with be about how to handle exceptions in our tests. See:

Following Elias suggested I wanted to reduce the code to

} catch(std::exception& e){
  throw;
}

What do you think?