Skip to content

Commit

Permalink
Merge pull request #16210 from JuliaLang/tk/osxtravis
Browse files Browse the repository at this point in the history
Also skip linalg/triangular on osx travis
  • Loading branch information
tkelman committed May 6, 2016
2 parents 775dc82 + 7b7b455 commit fcb41d5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ before_install:
export LDFLAGS="-L$(brew --prefix openblas-julia)/lib -L$(brew --prefix suite-sparse-julia)/lib";
export DYLD_FALLBACK_LIBRARY_PATH="/usr/local/lib:/lib:/usr/lib:$(brew --prefix openblas-julia)/lib:$(brew --prefix suite-sparse-julia)/lib:$(brew --prefix arpack-julia)/lib";
make $BUILDOPTS -C contrib -f repackage_system_suitesparse4.make;
TESTSTORUN="all --skip subarray"; fi # TODO: re enable this if possible without timing out
TESTSTORUN="all --skip linalg/triangular subarray"; fi # TODO: re enable these if possible without timing out
- git clone -q git://git.kitenet.net/moreutils
script:
- make -C moreutils mispipe
Expand Down
1 change: 0 additions & 1 deletion base/unicode/utf8.jl
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,6 @@ function convert(::Type{String}, a::Vector{UInt8}, invalids_as::AbstractString)
end
String(a)
end
convert(::Type{String}, s::AbstractString) = utf8(bytestring(s))

"""
Converts an already validated vector of `UInt16` or `UInt32` to a `String`
Expand Down
4 changes: 4 additions & 0 deletions test/subarray.jl
Original file line number Diff line number Diff line change
Expand Up @@ -471,3 +471,7 @@ let A = rand(10), sA = sub(copy(A), :)
permute!(sA, collect(Int16, 1:10))
@test A == sA
end

# the following segfaults with LLVM 3.8 on Windows, ref #15417
@test collect(sub(sub(reshape(1:13^3, 13, 13, 13), 3:7, 6, :), 1:2:5, :, 1:2:5)) ==
cat(3,[68,70,72],[406,408,410],[744,746,748])

0 comments on commit fcb41d5

Please sign in to comment.