aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-06-25 21:19:19 +0000
committerbloodstalker <thabogre@gmail.com>2017-06-25 21:19:19 +0000
commita300398fec606daeb1f8d98da16254d7c224c170 (patch)
tree494915020bee9aecfecc801643aa5f727f87404e
parentadded two more commands (diff)
downloadmutator-a300398fec606daeb1f8d98da16254d7c224c170.tar.gz
mutator-a300398fec606daeb1f8d98da16254d7c224c170.zip
updated
-rw-r--r--test/bruisertest/test.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/bruisertest/test.cpp b/test/bruisertest/test.cpp
index 40bfb47..f3e32d1 100644
--- a/test/bruisertest/test.cpp
+++ b/test/bruisertest/test.cpp
@@ -1,4 +1,7 @@
+#include <fstream>
+#include <iostream>
+
namespace devi
{
class LOCO
@@ -17,5 +20,10 @@ namespace devi
int main(int argc, const char **argv)
{
+ std::ofstream myfile;
+ myfile.open("./touch");
+ myfile << "line one.\n";
+ myfile.close();
+ return 0;
}