Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Zolotarev <deathbaba@gmail.com>2010-12-10 02:19:06 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:08:24 +0300
commitf477bb623cb7c97b40da7d044044c89be9401627 (patch)
treec29243675004792cd50eabc3d008f670229f93b5 /testing
parent30e035f55605f82f900cfd32f15cb364839d1ae5 (diff)
Added \n in the testing framework when test is FAILED
Diffstat (limited to 'testing')
-rw-r--r--testing/testing.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/testing.hpp b/testing/testing.hpp
index 9289840beb..2f1ffa1908 100644
--- a/testing/testing.hpp
+++ b/testing/testing.hpp
@@ -19,7 +19,7 @@ namespace my
{
inline void OnTestFailed(SrcPoint const & srcPoint, string const & msg)
{
- cerr << "FAILED" << endl << srcPoint.FileName() << ":" << srcPoint.Line() << " " << msg;
+ cerr << "FAILED" << endl << srcPoint.FileName() << ":" << srcPoint.Line() << " " << msg << endl;
MYTHROW(TestFailureException, (srcPoint.FileName(), srcPoint.Line(), msg));
}
}