diff options
| author | bloodstalker <thabogre@gmail.com> | 2017-06-23 02:10:19 +0000 | 
|---|---|---|
| committer | bloodstalker <thabogre@gmail.com> | 2017-06-23 02:10:19 +0000 | 
| commit | 935feedb0e750f3d2d744db46dcd48b2d6951fdf (patch) | |
| tree | 8369f0f85c7aa73daf19e4e4293cb6483c458add | |
| parent | whatever (diff) | |
| download | mutator-935feedb0e750f3d2d744db46dcd48b2d6951fdf.tar.gz mutator-935feedb0e750f3d2d744db46dcd48b2d6951fdf.zip | |
now the xml report path is relative
| -rw-r--r-- | mutator_report.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/mutator_report.cpp b/mutator_report.cpp index 6086880..fad0244 100644 --- a/mutator_report.cpp +++ b/mutator_report.cpp @@ -63,7 +63,7 @@ namespace Devi {      if (XMLErrorResult != XML_SUCCESS)      { -      std::cerr << "could not write xml misra report.\n"; +      std::cerr << "could not write xml misra report(base).\n";      }    }  /************************************************end of XMLReportBase*************************************************/ @@ -185,7 +185,7 @@ void XMLReport::SaveReport(void)    XMLReportDoc.InsertEndChild(RootPointer); -  XMLError XMLErrorResult = XMLReportDoc.SaveFile("./test/misrareport.xml"); +  XMLError XMLErrorResult = XMLReportDoc.SaveFile("./misrareport.xml");    if (XMLErrorResult != XML_SUCCESS)    { | 
