File tree Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ function ld_library_path(target::AbstractPlatform,
75
75
# that can natively run within this environment
76
76
if csl_paths
77
77
append! (paths,
78
- unique (" /usr/lib/csl-$(libc (p)) -$(arch (p)) " for p in (host, target ) if Sys. islinux (p) && proc_family (p) == " intel" ),
78
+ unique (" /usr/lib/csl-$(libc (p)) -$(arch (p)) " for p in (target, host ) if Sys. islinux (p) && proc_family (p) == " intel" ),
79
79
)
80
80
end
81
81
Original file line number Diff line number Diff line change @@ -377,15 +377,10 @@ using Pkg
377
377
./test 2>&1
378
378
"""
379
379
cmd = ` /bin/bash -c "$(test_script) "`
380
- if arch (platform) == " i686" && libc (platform) == " musl"
381
- # We can't run C++ programs for this platform
382
- @test_broken run (ur, cmd, iobuff; tee_stream= devnull )
383
- else
384
- @test run (ur, cmd, iobuff; tee_stream= stdout )
385
- seekstart (iobuff)
386
- # Test that we get the output we expect
387
- @test endswith (readchomp (iobuff), " Hello World!" )
388
- end
380
+ @test run (ur, cmd, iobuff; tee_stream= stdout )
381
+ seekstart (iobuff)
382
+ # Test that we get the output we expect
383
+ @test endswith (readchomp (iobuff), " Hello World!" )
389
384
cleanup_dependencies (prefix, artifact_paths, concrete_platform)
390
385
end
391
386
end
You can’t perform that action at this time.
0 commit comments