core: arch: Add ppc64le as a supported architecture (MR 2476)

Signed-off-by: Jens Reidel <adrian@travitia.xyz>
This commit is contained in:
Jens Reidel 2024-10-07 01:17:57 +02:00
parent e2354ec26f
commit 4b4ba1e6ec
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB
3 changed files with 3 additions and 1 deletions

View file

@ -44,7 +44,7 @@ def test_invalid_chroots(pmb_args):
Chroot(ChrootType.BUILDROOT, "BAD_ARCH")
assert (
str(excinfo.value)
== "Invalid architecture: 'BAD_ARCH', expected something like: aarch64, armhf, armv7, riscv64, x86, x86_64"
== "Invalid architecture: 'BAD_ARCH', expected something like: aarch64, armhf, armv7, ppc64le, riscv64, x86, x86_64"
)
with pytest.raises(ValueError) as excinfo: