Let tests pass for the moment.
[awesomized/libmemcached] / libtest / framework.cc
index 327c2c0de4ae65b827ec8fe340d045826e546327..b5ad738b2a88be1ff35ed91ab08e2c39d3f36376 100644 (file)
@@ -118,7 +118,8 @@ void Framework::exec()
 
     _total++;
 
-    try {
+    try
+    {
       switch ((*iter)->exec())
       {
       case TEST_FAILURE:
@@ -144,7 +145,7 @@ void Framework::exec()
     catch (libtest::disconnected& e)
     {
       _failed++;
-      Error << "Unhandled disconnection occurred:" << e.what();
+      stream::cerr(e.file(), e.line(), e.func()) << "Unhandled disconnection occurred: " << e.mesg();
       throw;
     }
     catch (...)