Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
keyset add test: skip non-x86_64 arch
Browse files Browse the repository at this point in the history
Signed-off-by: Serge Hallyn <[email protected]>
  • Loading branch information
hallyn committed Aug 21, 2023
1 parent 3659df7 commit 6b6e615
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/keyset.bats
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ function teardown() {
}

@test "Create new keysets" {
[ "$(arch)" = "x86_64" ] || { echo "skipping keyset add on \"$(arch)\""; exit 0; }
if [ "$(arch)" != "x86_64" ]; then
skip "Not supported on $(arch)"
fi
trust keyset add zomg
trust keyset add --org "My organization" homenet
cnt=$(trust keyset list | wc -l)
Expand Down

0 comments on commit 6b6e615

Please sign in to comment.