aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2018-02-11 20:29:49 +0000
committerbloodstalker <thabogre@gmail.com>2018-02-11 20:29:49 +0000
commit26859306a2affd060fb4ebebed7525a5d88e967c (patch)
tree7f0e83bbcf8e9ccff43814fc53649a61de00cc23 /test
parentmakefile update or they kinda do what they were supposed to do (diff)
downloadmutator-26859306a2affd060fb4ebebed7525a5d88e967c.tar.gz
mutator-26859306a2affd060fb4ebebed7525a5d88e967c.zip
2 major bug fixed for bruiser, a lot of little improvements and bug fixed here and there
Diffstat (limited to 'test')
-rw-r--r--test/m0-cpp-smoke/compile_commands.json2
-rw-r--r--test/m0-cpp-smoke/makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/m0-cpp-smoke/compile_commands.json b/test/m0-cpp-smoke/compile_commands.json
index 1a23f8c..3c4a929 100644
--- a/test/m0-cpp-smoke/compile_commands.json
+++ b/test/m0-cpp-smoke/compile_commands.json
@@ -1,6 +1,6 @@
[
{
- "command": "c++ -c -I/usr/lib/gcc/x86_64-redhat-linux/6.3.1/include -std=c++14 -o m0-cpp-smoke.o m0-cpp-smoke.cpp",
+ "command": "c++ -c -I/usr/lib/gcc/x86_64-redhat-linux/7.3.1/include -std=c++14 -o m0-cpp-smoke.o m0-cpp-smoke.cpp",
"directory": "/home/bloodstalker/devi/hell2/test/m0-cpp-smoke",
"file": "/home/bloodstalker/devi/hell2/test/m0-cpp-smoke/m0-cpp-smoke.cpp"
}
diff --git a/test/m0-cpp-smoke/makefile b/test/m0-cpp-smoke/makefile
index dfec4a2..b341a3f 100644
--- a/test/m0-cpp-smoke/makefile
+++ b/test/m0-cpp-smoke/makefile
@@ -1,7 +1,7 @@
TARGET=m0-cpp-smoke
CXX?=clang++
# you should change the include path to one that is right for you
-CXX_FLAGS=-I/usr/lib/gcc/x86_64-redhat-linux/6.3.1/include -std=c++14
+CXX_FLAGS=-I/usr/lib/gcc/x86_64-redhat-linux/7.3.1/include -std=c++14
.DEFAULT:all clean