@@ -6,23 +6,15 @@ using BinaryBuilderBase: RustBuild, CompilerShard
66@testset " Expand platforms" begin
77 # expand_gfortran_versions
88 @test expand_gfortran_versions (Platform (" i686" , " windows" )) == [
9- Platform (" i686" , " windows" ; libgfortran_version= v " 3" ),
10- Platform (" i686" , " windows" ; libgfortran_version= v " 4" ),
119 Platform (" i686" , " windows" ; libgfortran_version= v " 5" ),
1210 ]
1311 @test expand_gfortran_versions ([Platform (" i686" , " windows" ), Platform (" x86_64" , " windows" )]) == [
14- Platform (" i686" , " windows" ; libgfortran_version= v " 3" ),
15- Platform (" i686" , " windows" ; libgfortran_version= v " 4" ),
1612 Platform (" i686" , " windows" ; libgfortran_version= v " 5" ),
17- Platform (" x86_64" , " windows" ; libgfortran_version= v " 3" ),
18- Platform (" x86_64" , " windows" ; libgfortran_version= v " 4" ),
1913 Platform (" x86_64" , " windows" ; libgfortran_version= v " 5" ),
2014 ]
2115 @test expand_gfortran_versions ([Platform (" x86_64" , " freebsd" ; libgfortran_version= v " 3" )]) ==
2216 [Platform (" x86_64" , " freebsd" ; libgfortran_version= v " 3" )]
2317 @test expand_gfortran_versions ([Platform (" x86_64" , " macos" ), Platform (" aarch64" , " macos" )]) == [
24- Platform (" x86_64" , " macos" ; libgfortran_version= v " 3" ),
25- Platform (" x86_64" , " macos" ; libgfortran_version= v " 4" ),
2618 Platform (" x86_64" , " macos" ; libgfortran_version= v " 5" ),
2719 Platform (" aarch64" , " macos" ; libgfortran_version= v " 5" ),
2820 ]
@@ -34,21 +26,17 @@ using BinaryBuilderBase: RustBuild, CompilerShard
3426
3527 # expand_cxxstring_abis
3628 @test expand_cxxstring_abis (Platform (" x86_64" , " linux" ; libc= " musl" )) == [
37- Platform (" x86_64" , " linux" , libc= " musl" , cxxstring_abi= " cxx03" ),
3829 Platform (" x86_64" , " linux" , libc= " musl" , cxxstring_abi= " cxx11" ),
3930 ]
4031 @test expand_cxxstring_abis ([Platform (" x86_64" , " freebsd" ), Platform (" x86_64" , " macos" )]) == [
4132 Platform (" x86_64" , " freebsd" ),
4233 Platform (" x86_64" , " macos" ),
4334 ]
4435 @test expand_cxxstring_abis ([Platform (" x86_64" , " freebsd" ), Platform (" x86_64" , " macos" )]; skip= _-> false ) == [
45- Platform (" x86_64" , " freebsd" ; cxxstring_abi= " cxx03" ),
4636 Platform (" x86_64" , " freebsd" ; cxxstring_abi= " cxx11" ),
47- Platform (" x86_64" , " macos" ; cxxstring_abi= " cxx03" ),
4837 Platform (" x86_64" , " macos" ; cxxstring_abi= " cxx11" ),
4938 ]
5039 @test expand_cxxstring_abis ([Platform (" x86_64" , " freebsd" ), Platform (" x86_64" , " linux" )]; skip= Sys. islinux) == [
51- Platform (" x86_64" , " freebsd" ; cxxstring_abi= " cxx03" ),
5240 Platform (" x86_64" , " freebsd" ; cxxstring_abi= " cxx11" ),
5341 Platform (" x86_64" , " linux" ),
5442 ]
0 commit comments