Skip to content

Commit 96b4e45

Browse files
authored
Fix libraryEvolutionLinuxXCFramework test on arm (#9376)
Fix tests on arm. ``` swift test --filter "FunctionalTests.SwiftPMTests/libraryEvolutionLinuxXCFramework()" ``` In main there is: #9375 Fixes #9372
1 parent f8451c1 commit 96b4e45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/FunctionalTests/LibraryEvolutionXCFLinuxTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ private struct SwiftPMTests {
3232
)
3333

3434
#if arch(arm64)
35-
let arch = "arm64"
35+
let arch = "aarch64"
3636
#elseif arch(x86_64)
3737
let arch = "x86_64"
3838
#endif
@@ -106,4 +106,4 @@ private struct SwiftPMTests {
106106
#expect(runOutput.stdout.contains("Latest Framework with LibraryEvolution version: v2"))
107107
}
108108
}
109-
}
109+
}

0 commit comments

Comments
 (0)