summaryrefslogtreecommitdiff
path: root/AudioManagerUtilities/test/AmSocketHandlerTest/CAmSocketHandlerTest.cpp
diff options
context:
space:
mode:
authorMartin Koch <51775589+mkoch-aditg@users.noreply.github.com>2020-02-10 08:08:28 +0100
committerGitHub <noreply@github.com>2020-02-10 08:08:28 +0100
commitce23c6757e083040ce05c1ad758ba25caf98b44f (patch)
tree20c36aab9ca43ad651565bec2e7c8db6eee92a2b /AudioManagerUtilities/test/AmSocketHandlerTest/CAmSocketHandlerTest.cpp
parent86963abab32af54f7fe1244a727d3340ddeb5450 (diff)
parent56b7b1883c354b78ab6cff5739ddd2f170603324 (diff)
downloadaudiomanager-ce23c6757e083040ce05c1ad758ba25caf98b44f.tar.gz
Merge pull request #48 from GENIVI/LoggingArchitecture
AM-Utils: Introduce new logging architecture, providing a common DLT-independant wrapper for the 3 logging channels (DLT, file and stdout)
Diffstat (limited to 'AudioManagerUtilities/test/AmSocketHandlerTest/CAmSocketHandlerTest.cpp')
-rw-r--r--AudioManagerUtilities/test/AmSocketHandlerTest/CAmSocketHandlerTest.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/AudioManagerUtilities/test/AmSocketHandlerTest/CAmSocketHandlerTest.cpp b/AudioManagerUtilities/test/AmSocketHandlerTest/CAmSocketHandlerTest.cpp
index 3fde011..9914955 100644
--- a/AudioManagerUtilities/test/AmSocketHandlerTest/CAmSocketHandlerTest.cpp
+++ b/AudioManagerUtilities/test/AmSocketHandlerTest/CAmSocketHandlerTest.cpp
@@ -32,7 +32,7 @@
#include <sys/un.h>
#include <sys/poll.h>
#include <sys/eventfd.h>
-#include "CAmDltWrapper.h"
+#include "CAmLogWrapper.h"
#include "CAmSocketHandler.h"
@@ -771,6 +771,7 @@ TEST(CAmSocketHandlerTest,playWithSockets)
int main(int argc, char **argv)
{
::testing::InitGoogleTest(&argc, argv);
+ CAmLogWrapper::instantiateOnce("GTST", "GTEST for Socket Handler", LS_ON, LOG_SERVICE_DLT);
return RUN_ALL_TESTS();
}