diff options
author | bloodstalker <thabogre@gmail.com> | 2017-04-18 01:15:32 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-04-18 01:15:32 +0000 |
commit | 8707caed44832a127ab2b143162d2bf2329f39cf (patch) | |
tree | fa87642300d3289fb6ee8fa372e5299fd8d78a77 /bruiser/bruiser.cpp | |
parent | Merge branch 'master' of https://github.com/bloodstalker/mutator (diff) | |
download | mutator-8707caed44832a127ab2b143162d2bf2329f39cf.tar.gz mutator-8707caed44832a127ab2b143162d2bf2329f39cf.zip |
minor changes
Diffstat (limited to '')
-rw-r--r-- | bruiser/bruiser.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bruiser/bruiser.cpp b/bruiser/bruiser.cpp index 1847b0d..44a2084 100644 --- a/bruiser/bruiser.cpp +++ b/bruiser/bruiser.cpp @@ -49,9 +49,11 @@ using namespace clang::tooling; /**********************************************************************************************************************/ /*global vars*/ static llvm::cl::OptionCategory BruiserCategory("Empty"); + +bruiser::M0_ERR m0_err; /**********************************************************************************************************************/ cl::opt<bool> Intrusive("intrusive", cl::desc("If set true. bruiser will mutate the source."), cl::init(true), cl::cat(BruiserCategory), cl::ZeroOrMore); -cl::opt<std::string> M0XMLPath("xmlpath", cl::desc("tells bruiser where to find the XML file containing the Mutator-LVL0 report."), cl::init("./test/misrareport.xml"), cl::cat(BruiserCategory), cl::ZeroOrMore); +cl::opt<std::string> M0XMLPath("xmlpath", cl::desc("tells bruiser where to find the XML file containing the Mutator-LVL0 report."), cl::init(bruiser::M0REP), cl::cat(BruiserCategory), cl::ZeroOrMore); /**********************************************************************************************************************/ /*the implementation of the bruiser logger.*/ bruiser::BruiserReport::BruiserReport () |