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:
authorAdrian Reber <areber@redhat.com>2020-11-04 10:51:32 +0300
committerAndrei Vagin <avagin@gmail.com>2021-09-03 20:31:00 +0300
commit5bb4406e94a957e5a1e2257b94fce990043d6a47 (patch)
tree4950ca791ee1ee9cf56633a592e42b66225e8df3 /test/others/libcriu
parentfb21643b285b57b740aa7fe598503cbaca91e870 (diff)
ci: use graviton2 for arm64 tests on Travis
Using travis-ci.com instead of travis-ci.org offers access to bare metal aarch64 based systems and thus enabling us to run the full CRIU CI test suite. Switch arm64 based tests to arm64-graviton2 for tests. This is the first non x86_64 architecture running tests and not just compile in Travis. Signed-off-by: Adrian Reber <areber@redhat.com>
Diffstat (limited to 'test/others/libcriu')
-rwxr-xr-xtest/others/libcriu/run.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/others/libcriu/run.sh b/test/others/libcriu/run.sh
index bd92f8544..5a0dca46b 100755
--- a/test/others/libcriu/run.sh
+++ b/test/others/libcriu/run.sh
@@ -48,7 +48,10 @@ function run_test {
run_test test_sub
run_test test_self
run_test test_notify
-run_test test_iters
+if [ "$(uname -m)" == "x86_64" ]; then
+ # Skip this on aarch64 as aarch64 has no dirty page tracking
+ run_test test_iters
+fi
run_test test_errno
echo "== Tests done"