From 40337cb8d757aca151949752f8e69ad929212b30 Mon Sep 17 00:00:00 2001 From: Jeremi Piotrowski Date: Mon, 30 Aug 2021 13:31:07 +0000 Subject: [PATCH] jenkins/kola/dev-container: test that perl doesn't segfault Previously our cross-compiled perl segfaulted on simple operations such as `perl -V`. Since we only ship it in the devcontainer, test that it works correctly in our dev-container test. Signed-off-by: Jeremi Piotrowski --- jenkins/kola/dev-container.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jenkins/kola/dev-container.sh b/jenkins/kola/dev-container.sh index 3b40d4c46b..22013097f7 100755 --- a/jenkins/kola/dev-container.sh +++ b/jenkins/kola/dev-container.sh @@ -33,6 +33,8 @@ sudo systemd-nspawn $PIPEARG \ --tmpfs=/usr/src \ --tmpfs=/var/tmp \ /bin/bash -eux << 'EOF' +# check that perl works +perl -V emerge-gitclone . /usr/share/coreos/release if [[ $FLATCAR_RELEASE_VERSION =~ master ]]