diff options
author | Julian Andres Klode <julian.klode@canonical.com> | 2024-01-08 10:12:42 +0100 |
---|---|---|
committer | Julian Andres Klode <julian.klode@canonical.com> | 2024-01-08 10:19:02 +0100 |
commit | 719676d84b4bcdc5c65b87d42c4b72812209832b (patch) | |
tree | 7890513772239fb602c7f9d7b8804bf8231232fe /test | |
parent | 86e6eace1d50527b5a2396290acd1db819b13e26 (diff) |
test: Disable valgrind on armhf, incompatible with stack clash protector
Closes: #1059352
Diffstat (limited to 'test')
-rwxr-xr-x | test/integration/test-apt-update-simple | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/integration/test-apt-update-simple b/test/integration/test-apt-update-simple index 6855f1d1f..0d28034aa 100755 --- a/test/integration/test-apt-update-simple +++ b/test/integration/test-apt-update-simple @@ -34,4 +34,9 @@ main/i18n/Translation-de' aptget indextargets --format '$(METAKEY)' # Check that -o Acquire::Queue-Mode=access does not crash find rootdir/var/lib/apt/lists/ -type f -delete -testsuccess valgrind aptget update -o Acquire::Queue-Mode=access +if [ "$(command dpkg --print-architecture)" = "armhf" ]; then + msgskip "valgrind on armhf is broken" + testsuccess aptget update -o Acquire::Queue-Mode=access +else + testsuccess valgrind aptget update -o Acquire::Queue-Mode=access +fi |