Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/others/rpc/config_file.py')
-rwxr-xr-xtest/others/rpc/config_file.py17
1 files changed, 2 insertions, 15 deletions
diff --git a/test/others/rpc/config_file.py b/test/others/rpc/config_file.py
index e4b395e31..7b07bc145 100755
--- a/test/others/rpc/config_file.py
+++ b/test/others/rpc/config_file.py
@@ -1,31 +1,18 @@
#!/usr/bin/python
import os
-import socket
import sys
import rpc_pb2 as rpc
import argparse
-import subprocess
from tempfile import mkstemp
import time
+from setup_swrk import setup_swrk
+
log_file = 'config_file_test.log'
does_not_exist = 'does-not.exist'
-def setup_swrk():
- print('Connecting to CRIU in swrk mode.')
- s1, s2 = socket.socketpair(socket.AF_UNIX, socket.SOCK_SEQPACKET)
-
- kwargs = {}
- if sys.version_info.major == 3:
- kwargs["pass_fds"] = [s1.fileno()]
-
- swrk = subprocess.Popen(['./criu', "swrk", "%d" % s1.fileno()], **kwargs)
- s1.close()
- return swrk, s2
-
-
def setup_config_file(content):
# Creating a temporary file which will be used as configuration file.
fd, path = mkstemp()