aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-06-23 02:10:19 +0000
committerbloodstalker <thabogre@gmail.com>2017-06-23 02:10:19 +0000
commit935feedb0e750f3d2d744db46dcd48b2d6951fdf (patch)
tree8369f0f85c7aa73daf19e4e4293cb6483c458add
parentwhatever (diff)
downloadmutator-935feedb0e750f3d2d744db46dcd48b2d6951fdf.tar.gz
mutator-935feedb0e750f3d2d744db46dcd48b2d6951fdf.zip
now the xml report path is relative
Diffstat (limited to '')
-rw-r--r--mutator_report.cpp4
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)
{