aboutsummaryrefslogtreecommitdiff
path: root/tests/profiling/GatordMockMain.cpp
diff options
context:
space:
mode:
authorColm Donelan <Colm.Donelan@arm.com>2019-09-09 11:59:08 +0100
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-09-09 16:24:39 +0000
commita85e215dd1b027c5ef88621d1b4d5f6e078605da (patch)
tree2c5b1046788ad231daaecdedad08519ee8ae1a39 /tests/profiling/GatordMockMain.cpp
parent8fccd86b95be418d1b0397bfd5f48a319f210180 (diff)
downloadarmnn-a85e215dd1b027c5ef88621d1b4d5f6e078605da.tar.gz
IVGCVSW-3720 Start a UDS server that accepts connections.
* Add a CLI paramter to the Gatord mock client to specify a namespace. * Open a listening socket on that namespace. * Wait for one connection on the socket. Signed-off-by: Colm Donelan <Colm.Donelan@arm.com> Change-Id: Ic85b4defd5ad2010bb255472c030a91a23cec1d9
Diffstat (limited to 'tests/profiling/GatordMockMain.cpp')
-rw-r--r--tests/profiling/GatordMockMain.cpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/tests/profiling/GatordMockMain.cpp b/tests/profiling/GatordMockMain.cpp
index 91fa907795..b8edeb2b2d 100644
--- a/tests/profiling/GatordMockMain.cpp
+++ b/tests/profiling/GatordMockMain.cpp
@@ -4,8 +4,7 @@
//
#include "CommandLineProcessor.hpp"
-
-#include <cstdlib>
+#include "GatordMockService.hpp"
int main(int argc, char *argv[])
{
@@ -14,5 +13,15 @@ int main(int argc, char *argv[])
{
return EXIT_FAILURE;
}
+ armnn::gatordmock::GatordMockService mockService;
+ if (!mockService.OpenListeningSocket(cmdline.GetUdsNamespace()))
+ {
+ return EXIT_FAILURE;
+ }
+ int clientFd = mockService.BlockForOneClient();
+ if (-1 == clientFd)
+ {
+ return EXIT_FAILURE;
+ }
return EXIT_SUCCESS;
}