@@ -217,9 +217,19 @@ def test_spec_satisfies_machine(left: str, right: str, expected: bool) -> None:
217217 pytest .param ("x86_64" , "x86_64" , id = "x86_64" ),
218218 pytest .param ("arm64" , "arm64" , id = "arm64" ),
219219 pytest .param ("x86" , "x86" , id = "x86" ),
220+ pytest .param ("i386" , "x86" , id = "i386" ),
221+ pytest .param ("i486" , "x86" , id = "i486" ),
222+ pytest .param ("i586" , "x86" , id = "i586" ),
223+ pytest .param ("i686" , "x86" , id = "i686" ),
220224 pytest .param ("ppc64le" , "ppc64le" , id = "ppc64le" ),
225+ pytest .param ("powerpc" , "ppc" , id = "powerpc" ),
226+ pytest .param ("powerpc64" , "ppc64" , id = "powerpc64" ),
227+ pytest .param ("powerpc64le" , "ppc64le" , id = "powerpc64le" ),
221228 pytest .param ("riscv64" , "riscv64" , id = "riscv64" ),
222229 pytest .param ("s390x" , "s390x" , id = "s390x" ),
230+ pytest .param ("sparcv9" , "sparc64" , id = "sparcv9" ),
231+ pytest .param ("sparc64" , "sparc64" , id = "sparc64" ),
232+ pytest .param ("alpha" , "alpha" , id = "alpha-passthrough" ),
223233 ],
224234)
225235def test_normalize_isa (isa : str , normalized : str ) -> None :
0 commit comments