Use system include directives for libpldm headers
libpldm is now an external dependency rather than an in-tree library.
Adjust the includes accordingly.
Change-Id: Ib2590b823039d3127d65f66976b294a2fb88e9c1
Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
diff --git a/platform-mc/test/event_manager_test.cpp b/platform-mc/test/event_manager_test.cpp
index 087dff3..4550b40 100644
--- a/platform-mc/test/event_manager_test.cpp
+++ b/platform-mc/test/event_manager_test.cpp
@@ -1,7 +1,3 @@
-#include "libpldm/base.h"
-#include "libpldm/entity.h"
-#include "libpldm/platform.h"
-
#include "common/instance_id.hpp"
#include "common/types.hpp"
#include "mock_event_manager.hpp"
@@ -11,6 +7,10 @@
#include "test/test_instance_id.hpp"
#include "utils_test.hpp"
+#include <libpldm/base.h>
+#include <libpldm/entity.h>
+#include <libpldm/platform.h>
+
#include <gtest/gtest.h>
using ::testing::_;
diff --git a/platform-mc/test/numeric_sensor_test.cpp b/platform-mc/test/numeric_sensor_test.cpp
index 8b59401..1bce25c 100644
--- a/platform-mc/test/numeric_sensor_test.cpp
+++ b/platform-mc/test/numeric_sensor_test.cpp
@@ -1,10 +1,10 @@
-#include "libpldm/entity.h"
-#include "libpldm/platform.h"
-
#include "platform-mc/numeric_sensor.hpp"
#include "platform-mc/terminus.hpp"
+#include <libpldm/entity.h>
+#include <libpldm/platform.h>
+
#include <gtest/gtest.h>
TEST(NumericSensor, conversionFormula)
diff --git a/platform-mc/test/terminus_manager_test.cpp b/platform-mc/test/terminus_manager_test.cpp
index f4f0ec1..6eb2439 100644
--- a/platform-mc/test/terminus_manager_test.cpp
+++ b/platform-mc/test/terminus_manager_test.cpp
@@ -1,8 +1,3 @@
-#include "libpldm/base.h"
-#include "libpldm/bios.h"
-#include "libpldm/fru.h"
-#include "libpldm/platform.h"
-
#include "common/instance_id.hpp"
#include "common/types.hpp"
#include "mock_terminus_manager.hpp"
@@ -13,6 +8,11 @@
#include "requester/request.hpp"
#include "test/test_instance_id.hpp"
+#include <libpldm/base.h>
+#include <libpldm/bios.h>
+#include <libpldm/fru.h>
+#include <libpldm/platform.h>
+
#include <sdbusplus/timer.hpp>
#include <sdeventplus/event.hpp>
diff --git a/platform-mc/test/terminus_test.cpp b/platform-mc/test/terminus_test.cpp
index 77ae931..127a2ff 100644
--- a/platform-mc/test/terminus_test.cpp
+++ b/platform-mc/test/terminus_test.cpp
@@ -1,8 +1,8 @@
-#include "libpldm/entity.h"
-
#include "platform-mc/numeric_sensor.hpp"
#include "platform-mc/terminus.hpp"
+#include <libpldm/entity.h>
+
#include <gtest/gtest.h>
TEST(TerminusTest, supportedTypeTest)