Skip to content

Commit

Permalink
tests/crate_config/basic: fix arm64 expected host (#1015)
Browse files Browse the repository at this point in the history
Co-authored-by: GHA <[email protected]>
  • Loading branch information
Fabien-Chouteau and actions-user authored May 4, 2022
1 parent c235b09 commit 8858e90
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions testsuite/tests/crate_config/basic/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
expected_host_arch = platform.machine().lower()
if expected_host_arch == "amd64":
expected_host_arch = "x86_64"
if expected_host_arch == "arm64":
expected_host_arch = "aarch64"

expected_host_os = platform.system().lower()
if expected_host_os == "darwin":
Expand Down

0 comments on commit 8858e90

Please sign in to comment.