Change include style to use system includes
The libcper header files in `libcper` are installed to
`usr/include/libcper`. Use that system includes in `libcper` source
instead of using the project includes.
Change-Id: I596edc2c754dae4829844f535a1e34caa246fb43
Signed-off-by: Thu Nguyen <thu@os.amperecomputing.com>
diff --git a/tests/test-utils.cpp b/tests/test-utils.cpp
index c508e8d..e16413c 100644
--- a/tests/test-utils.cpp
+++ b/tests/test-utils.cpp
@@ -8,8 +8,8 @@
#include <cstdlib>
#include "test-utils.hpp"
-#include "BaseTypes.h"
-#include "../generator/cper-generate.h"
+#include <libcper/BaseTypes.h>
+#include <libcper/generator/cper-generate.h>
//Returns a ready-for-use memory stream containing a CPER record with the given sections inside.
FILE *generate_record_memstream(const char **types, UINT16 num_types,