~brianaker/libmemcached/1164440

« back to all changes in this revision

Viewing changes to libtest/framework.cc

  • Committer: Continuous Integration
  • Date: 2012-10-22 05:56:09 UTC
  • mfrom: (1086.1.8 libmemcached-1.0)
  • Revision ID: ci@tangent.org-20121022055609-cbooaw9bcdal4qge
Merge lp:~tangent-org/libmemcached/1.0-build Build: jenkins-Libmemcached-1.0-87

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
 
119
119
    _total++;
120
120
 
121
 
    try
122
 
    {
 
121
    try {
123
122
      switch ((*iter)->exec())
124
123
      {
125
124
      case TEST_FAILURE:
145
144
    catch (libtest::disconnected& e)
146
145
    {
147
146
      _failed++;
148
 
      stream::cerr(e.file(), e.line(), e.func()) << "Unhandled disconnection occurred: " << e.mesg();
 
147
      Error << "Unhandled disconnection occurred:" << e.what();
149
148
      throw;
150
149
    }
151
150
    catch (...)