forked from organicmaps/organicmaps
[omim] [testing] Changed the output of failed tests to the conventional filename:linenumber format.
This commit is contained in:
parent
ade195af4d
commit
ca800e1319
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ namespace my
|
|||
inline void OnTestFailed(SrcPoint const & srcPoint, string const & msg)
|
||||
{
|
||||
LOG(LINFO, ("FAILED"));
|
||||
LOG(LINFO, (srcPoint.FileName(), ":", srcPoint.Line(), msg));
|
||||
LOG(LINFO, (DebugPrint(srcPoint.FileName()) + ":" + DebugPrint(srcPoint.Line()), msg));
|
||||
MYTHROW(TestFailureException, (srcPoint.FileName(), srcPoint.Line(), msg));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue