summaryrefslogtreecommitdiff
path: root/test/ipc/unixsocket_ipc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/ipc/unixsocket_ipc.cpp')
-rw-r--r--test/ipc/unixsocket_ipc.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/ipc/unixsocket_ipc.cpp b/test/ipc/unixsocket_ipc.cpp
index ab5d2557..2e3b52ca 100644
--- a/test/ipc/unixsocket_ipc.cpp
+++ b/test/ipc/unixsocket_ipc.cpp
@@ -227,5 +227,7 @@ int main(int argc, char **argv)
return slave.run(ipcfd);
}
- return UnixSocketTestIPC().execute();
+ UnixSocketTestIPC test;
+ test.setArgs(argc, argv);
+ return test.execute();
}