From 1e35bd8213f520dd4c6cf37ee9d10230c1bdfd2e Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Thu, 21 Jun 2018 11:32:53 +0300 Subject: [PATCH] tests: others,rpc -- Tune up header - string.h is missed for memX helpers - fcntl.h should be included instead of sys With this patch the test-c is compiled on alpine tests, but there is a problem related to the container itself | protoc-c --proto_path=. --c_out=. rpc.proto | gcc -g -Werror -Wall -I. -c -o test-c.o test-c.c | gcc -g -Werror -Wall -I. -c -o rpc.pb-c.o rpc.pb-c.c | gcc test-c.o rpc.pb-c.o -lprotobuf-c -o test-c | protoc --proto_path=. --python_out=. rpc.proto | cp ../../../criu/criu criu | chmod u+s criu | mkdir -p build | chmod a+rwx build | sudo -g '#1000' -u '#1000' ./criu service -v4 -W build -o service.log --address criu_service.socket -d --pidfile pidfile | make: sudo: Command not found Signed-off-by: Cyrill Gorcunov Signed-off-by: Andrei Vagin --- test/others/rpc/test-c.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/others/rpc/test-c.c b/test/others/rpc/test-c.c index 490a07a4f..f210a973a 100644 --- a/test/others/rpc/test-c.c +++ b/test/others/rpc/test-c.c @@ -3,7 +3,8 @@ #include #include #include -#include +#include +#include #include #include #include