[lxc-devel] [PATCH 1/3] Allow criu >= 1.3 in c/r test
Tycho Andersen
tycho.andersen at canonical.com
Tue Sep 2 23:37:03 UTC 2014
criu version 1.3 has been tagged, which has the minimal set of patches to allow
checkpointing and restoring containers. lxc-test-checkpoint-restore is now
skipped on any version of criu lower than 1.3.
Signed-off-by: Tycho Andersen <tycho.andersen at canonical.com>
---
src/tests/lxc-test-checkpoint-restore | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/src/tests/lxc-test-checkpoint-restore b/src/tests/lxc-test-checkpoint-restore
index 43068ef..a6777d1 100755
--- a/src/tests/lxc-test-checkpoint-restore
+++ b/src/tests/lxc-test-checkpoint-restore
@@ -15,7 +15,13 @@ if [ "$(id -u)" != "0" ]; then
exit 1
fi
-if [ "$(criu --version | head -n1 | cut -d' ' -f 2)" != "1.3-rc2" ]; then
+vergte() {
+ ! [ "$1" = "$(echo "$1\n$2" | sort -V | tail -n1)" ]
+}
+
+criu_version="$(criu --version | head -n1 | cut -d' ' -f 2)"
+
+if vergte "$criu_version" "1.3"; then
echo "SKIP: skipping test because no (or wrong) criu installed."
exit 0
fi
--
1.9.1
More information about the lxc-devel
mailing list