summaryrefslogtreecommitdiffstats
path: root/tests/features
diff options
context:
space:
mode:
Diffstat (limited to 'tests/features')
-rwxr-xr-xtests/features/ipctest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/features/ipctest.py b/tests/features/ipctest.py
index 857225fe0a5..5aff319b8d0 100755
--- a/tests/features/ipctest.py
+++ b/tests/features/ipctest.py
@@ -10,7 +10,7 @@ if libgfapi == None:
libgfapi = "libgfapi.so"
api = ctypes.CDLL(libgfapi,mode=ctypes.RTLD_GLOBAL)
-api.glfs_ipc.argtypes = [ ctypes.c_void_p, ctypes.c_int ]
+api.glfs_ipc.argtypes = [ ctypes.c_void_p, ctypes.c_int, ctypes.c_void_p, ctypes.c_void_p ]
api.glfs_ipc.restype = ctypes.c_int
def do_ipc (host, volume):
@@ -19,7 +19,7 @@ def do_ipc (host, volume):
api.glfs_set_volfile_server(fs,"tcp",host,24007)
api.glfs_init(fs)
- ret = api.glfs_ipc(fs,1470369258)
+ ret = api.glfs_ipc(fs,1470369258,0,0)
api.glfs_fini(fs)
return ret