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
path: root/test
diff options
context:
space:
mode:
authorAshutosh Mehra <asmehra1@in.ibm.com>2019-09-13 21:47:33 +0300
committerAndrei Vagin <avagin@gmail.com>2020-02-04 23:39:04 +0300
commitf8125b8bef7bf5a7bbaea5e6e1d29578c45bf53d (patch)
tree13eb348c366f2c598730dc1c8ffed8452af9a2a5 /test
parent477c3a4b0b7a246808afb2f12d0553db14dd74a6 (diff)
Couple of fixes to build and run libcriu tests
libcriu tests are currently broken. This patch fixes couple of issues to allow the building and running libcriu tests. 1. lib/c/criu.h got updated to include version.h which is present at "criu/include", but the command to compile libcriu tests is not specifying "criu/include" in the path to be searched for header files. This resulted in compilation error. This can be fixed by adding "-I ../../../../../criu/criu/include" however it causes more problems as "criu/include/fcntl.h" would now hide system defined fcntl.h Solution is to use "-iquote ../../../../../criu/criu/include" which applies only to the quote form of include directive. 2. Secondly, libcriu.so major version got updated to 2 but libcriu/run.sh still assumes verion 1. Instead of just updating the version in libcriu/run.sh to 2, this patch updates the libcriu/Makefile to use "CRIU_SO_VERSION_MAJOR" so that future changes to major version of libcriu won't cause same problem again. Signed-off-by: Ashutosh Mehra <asmehra1@in.ibm.com>
Diffstat (limited to 'test')
-rw-r--r--test/others/libcriu/Makefile14
-rwxr-xr-xtest/others/libcriu/run.sh5
2 files changed, 14 insertions, 5 deletions
diff --git a/test/others/libcriu/Makefile b/test/others/libcriu/Makefile
index 5289ed15a..226396e6a 100644
--- a/test/others/libcriu/Makefile
+++ b/test/others/libcriu/Makefile
@@ -1,3 +1,5 @@
+include ../../../../criu/Makefile.versions
+
TESTS += test_sub
TESTS += test_self
TESTS += test_notify
@@ -19,8 +21,16 @@ endef
$(foreach t, $(TESTS), $(eval $(call genb, $(t))))
%.o: %.c
- gcc -c $^ -I../../../../criu/lib/c/ -I../../../../criu/images/ -o $@ -Werror
+ gcc -c $^ -iquote ../../../../criu/criu/include -I../../../../criu/lib/c/ -I../../../../criu/images/ -o $@ -Werror
-clean:
+clean: libcriu_clean
rm -rf $(TESTS) $(TESTS:%=%.o) lib.o
.PHONY: clean
+
+libcriu_clean:
+ rm -f libcriu.so.${CRIU_SO_VERSION_MAJOR}
+.PHONY: libcriu_clean
+
+libcriu:
+ ln -s ../../../../criu/lib/c/libcriu.so libcriu.so.${CRIU_SO_VERSION_MAJOR}
+.PHONY: libcriu
diff --git a/test/others/libcriu/run.sh b/test/others/libcriu/run.sh
index a99b91e52..5f692db31 100755
--- a/test/others/libcriu/run.sh
+++ b/test/others/libcriu/run.sh
@@ -5,14 +5,13 @@ source ../env.sh || exit 1
echo "== Clean"
make clean
+make libcriu
rm -rf wdir
-rm -f ./libcriu.so.1
echo "== Prepare"
mkdir -p wdir/i/
echo "== Run tests"
-ln -s ../../../../criu/lib/c/libcriu.so libcriu.so.1
export LD_LIBRARY_PATH=.
export PATH="`dirname ${BASH_SOURCE[0]}`/../../:$PATH"
@@ -40,6 +39,6 @@ run_test test_iters
run_test test_errno
echo "== Tests done"
-unlink libcriu.so.1
+make libcriu_clean
[ $RESULT -eq 0 ] && echo "Success" || echo "FAIL"
exit $RESULT