diff options
author | Luca Boccassi <luca.boccassi@microsoft.com> | 2022-01-12 22:38:04 +0000 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@microsoft.com> | 2022-01-12 22:59:20 +0000 |
commit | a94b9977d5f7889ff5b70e6a59717fcf9f854b50 (patch) | |
tree | 0d3509afc2d388f1e955ffdd09dea6c433769ac8 /test/units/testsuite-50.sh | |
parent | df207ccb7be02b1ca6bdd0a2066a898e5b24ee86 (diff) | |
download | systemd-a94b9977d5f7889ff5b70e6a59717fcf9f854b50.tar.gz |
test: add partition IDs for s390x and ppc64el to TEST-50-DISSECT
Diffstat (limited to 'test/units/testsuite-50.sh')
-rwxr-xr-x | test/units/testsuite-50.sh | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/test/units/testsuite-50.sh b/test/units/testsuite-50.sh index fa855fafcc..b35527f761 100755 --- a/test/units/testsuite-50.sh +++ b/test/units/testsuite-50.sh @@ -102,10 +102,16 @@ elif [ "${machine}" = "ia64" ]; then verity_guid=86ed10d5-b607-45bb-8957-d350f23d0571 signature_guid=e98b36ee-32ba-4882-9b12-0ce14655f46a architecture="ia64" +elif [ "${machine}" = "s390x" ]; then + root_guid=5eead9a9-fe09-4a1e-a1d7-520d00531306 + verity_guid=b325bfbe-c7be-4ab8-8357-139e652d2f6b + signature_guid=c80187a5-73a3-491a-901a-017c3fa953e9 + architecture="s390x" elif [ "${machine}" = "ppc64le" ]; then - # There's no support of PPC in the discoverable partitions specification yet, so skip the rest for now - echo OK >/testok - exit 0 + root_guid=c31c45e6-3f39-412e-80fb-4809c4980599 + verity_guid=906bd944-4589-4aae-a4e4-dd983917446a + signature_guid=d4a236e7-e873-4c07-bf1d-bf6cf7f1c3c6 + architecture="ppc64-le" else echo "Unexpected uname -m: ${machine} in testsuite-50.sh, please fix me" exit 1 |