From f477bb623cb7c97b40da7d044044c89be9401627 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Thu, 9 Dec 2010 23:19:06 +0000 Subject: [PATCH] Added \n in the testing framework when test is FAILED --- testing/testing.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); } }