~brianaker/libmemcached/gear-clean

« back to all changes in this revision

Viewing changes to libtest/framework.cc

  • Committer: Brian Aker
  • Date: 2013-01-24 11:17:17 UTC
  • mto: This revision was merged to the branch mainline in revision 1144.
  • Revision ID: brian@tangent.org-20130124111717-nmiq5yf0v1ov9jhk
Correct style, use of newer YATL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
        break;
134
134
      }
135
135
    }
136
 
    catch (libtest::fatal& e)
 
136
    catch (const libtest::fatal& e)
137
137
    {
138
138
      _failed++;
139
139
      stream::cerr(e.file(), e.line(), e.func()) << e.what();
140
140
    }
141
 
    catch (libtest::disconnected& e)
 
141
    catch (const libtest::disconnected& e)
142
142
    {
143
143
      _failed++;
144
144
      Error << "Unhandled disconnection occurred:" << e.what();