aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-06-25 21:20:07 +0000
committerbloodstalker <thabogre@gmail.com>2017-06-25 21:20:07 +0000
commite324218ff4171bcc34f8c1ba530f7db2e1701e39 (patch)
tree0d725c894b57d9145e3525c3f70e02b67bebc4c2 /bruiser
parentupdated (diff)
downloadmutator-e324218ff4171bcc34f8c1ba530f7db2e1701e39.tar.gz
mutator-e324218ff4171bcc34f8c1ba530f7db2e1701e39.zip
added 4 new command
Diffstat (limited to '')
-rw-r--r--bruiser/bruiser.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/bruiser/bruiser.h b/bruiser/bruiser.h
index a3c9594..cfc9916 100644
--- a/bruiser/bruiser.h
+++ b/bruiser/bruiser.h
@@ -140,7 +140,11 @@ help CMDHelp[] = {
{"strainrecognition()", "", "", "", ""},
{"setmakepath()", "setmakepath(\"../../myproject\")", "tells bruiser where to execute the make command run from make()", "string", "none"},
{"run()", "run(\"myexecutable\")", "runs the mutant", "string", "return value"},
- {"setbinpath()", "setbinpath(\"bin_path\")", "sets the binary path for mutant executable", "string", "none"}
+ {"setbinpath()", "setbinpath(\"bin_path\")", "sets the binary path for mutant executable", "string", "none"},
+ {"getbinpath()", "getbinpath()", "gets the binary path for mutant executable", "none", "string"},
+ {"getmakepath()", "getmakepath()", "gets the make path for mutant executable", "none", "string"},
+ {"getpaths()", "getpaths()", "gets the currently loaded paths that bruiser looks through", "none", "array of strings"},
+ {"getsourcefiles()", "getsourcefiles()", "gets the currently loaded source files that bruiser will look through", "none", "array of strings"}
};
/**********************************************************************************************************************/
/**