Skip to content

Commit ca826c5

Browse files
committed
Fix windows as well
1 parent 2cc9f9d commit ca826c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

BinaryBuilderToolchains.jl/test/CToolchainTests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,8 @@ ENV["TESTSUITE_OUTPUT_DIR"] = mktempdir(;cleanup=false)
157157
@testset "make compile-all" begin
158158
cd(joinpath(@__DIR__, "testsuite", "CToolchain")) do
159159
EXCLUDED_DIRS = String[]
160-
# macOS doesn't do debug sections, so there's no compressing them.
161-
if Sys.isapple(target)
160+
# Windows and macOS don't do debug sections, so there's no compressing them.
161+
if Sys.isapple(target) || Sys.iswindows(target)
162162
push!(EXCLUDED_DIRS, "07_compressed_debug_sections")
163163
end
164164
# the bootstrap GCC binutils doesn't have our deterministic strip patch

0 commit comments

Comments
 (0)