aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser/lua-scripts/pre2.lua
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-07-23 07:40:39 +0000
committerbloodstalker <thabogre@gmail.com>2017-07-23 07:40:39 +0000
commit2b97985ac4768e57862835194902b28df0f96200 (patch)
treebd80c7ac8a7adce2162bceacbebf3d2f90cdf4e8 /bruiser/lua-scripts/pre2.lua
parentadded bruiser smoke tests (diff)
downloadmutator-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.lua12
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()