|
136 | 136 |
|
137 | 137 | # Test that trying to set illegal tags fails
|
138 | 138 | @test_throws ArgumentError p["os"] = "a+b"
|
| 139 | + |
| 140 | + # Test that our `hash()` is stable |
| 141 | + @test hash(HostPlatform()) == hash(HostPlatform()) |
| 142 | + |
| 143 | + # Test that round-tripping through `triplet` for a does not |
| 144 | + # maintain equality, as we end up losing the `compare_strategies`: |
| 145 | + p = Platform("x86_64", "linux"; cuda = v"11") |
| 146 | + Base.BinaryPlatforms.set_compare_strategy!(p, "cuda", Base.BinaryPlatforms.compare_version_cap) |
| 147 | + q = parse(Platform, triplet(p)) |
| 148 | + @test q != p |
139 | 149 | end
|
140 | 150 |
|
141 | 151 | @testset "Triplet parsing" begin
|
@@ -186,13 +196,12 @@ end
|
186 | 196 | # Round-trip our little homie through `triplet()`, with some bending
|
187 | 197 | # of the rules for MacOS and FreeBSD, who have incomplete `os_version`
|
188 | 198 | # numbers embedded within their triplets.
|
189 |
| - p = HostPlatform() |
190 |
| - if !Sys.isbsd(p) |
191 |
| - @test parse(Platform, triplet(p)) == p |
192 |
| - end |
| 199 | + p = Platform("x86_64", "linux") |
| 200 | + @test parse(Platform, triplet(p)) == p |
193 | 201 |
|
194 | 202 | # Also test round-tripping through `repr()`:
|
195 |
| - @test eval(Meta.parse(repr(HostPlatform()))) == HostPlatform() |
| 203 | + p = Platform("aarch64", "macos"; os_version=v"20", march="armv8_4_crypto_sve") |
| 204 | + @test eval(Meta.parse(repr(p))) == p |
196 | 205 | end
|
197 | 206 |
|
198 | 207 | @testset "platforms_match()" begin
|
|
0 commit comments