From ac2f0bfd08de89ce9611db47868081060af0f58e Mon Sep 17 00:00:00 2001 From: Felipe Zimmerle Date: Tue, 11 Aug 2015 16:01:17 -0300 Subject: [PATCH] Cosmetic: avoiding warning by including full path instead of file.h --- test/Makefile.am | 2 ++ test/common/modsecurity_test.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/test/Makefile.am b/test/Makefile.am index f8842fd7..139497c9 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -33,6 +33,7 @@ unit_tests_LDADD = \ unit_tests_CPPFLAGS = \ -std=c++11 \ -Icommon \ + -I../ \ -O0 \ -g \ -I$(top_builddir)/headers \ @@ -59,6 +60,7 @@ regression_tests_LDADD = \ regression_tests_CPPFLAGS = \ -std=c++11 \ -Icommon \ + -I../ \ -O0 \ -g \ -I$(top_builddir)/headers \ diff --git a/test/common/modsecurity_test.h b/test/common/modsecurity_test.h index 6ab6823a..9814874e 100644 --- a/test/common/modsecurity_test.h +++ b/test/common/modsecurity_test.h @@ -43,7 +43,7 @@ template class ModSecurityTest : } // namespace modsecurity_test -#include "modsecurity_test.cc" +#include "test/common/modsecurity_test.cc" #endif // TEST_COMMON_MODSECURITY_TEST_H_