diff options
author | bloodstalker <thabogre@gmail.com> | 2017-07-23 07:40:39 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-07-23 07:40:39 +0000 |
commit | 2b97985ac4768e57862835194902b28df0f96200 (patch) | |
tree | bd80c7ac8a7adce2162bceacbebf3d2f90cdf4e8 /bruiser/lua-scripts/pre2.lua | |
parent | added bruiser smoke tests (diff) | |
download | mutator-2b97985ac4768e57862835194902b28df0f96200.tar.gz mutator-2b97985ac4768e57862835194902b28df0f96200.zip |
test scripts for the precommit script to run, mainly copies of mutation-example and testfile1 lua scripts
Diffstat (limited to 'bruiser/lua-scripts/pre2.lua')
-rw-r--r-- | bruiser/lua-scripts/pre2.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bruiser/lua-scripts/pre2.lua b/bruiser/lua-scripts/pre2.lua new file mode 100644 index 0000000..9abd811 --- /dev/null +++ b/bruiser/lua-scripts/pre2.lua @@ -0,0 +1,12 @@ +setmakepath("./test/bruisertest") +setbinpath("./test/bruisertest") +make("clean") +make("all") +--extractmutagen("test.cpp") +text = hijackmain() +file = io.open("./test/bruisertest/mutant.cpp", "w") +print("------------------------------------------------------------------") +print(text) +print("------------------------------------------------------------------") +file:write() +file:close() |