Skip to content

Commit 400c3b3

Browse files
committed
fix tests to work with JuliaLang/julia#16590, eliminate deprecation warnings for unsafe_string
1 parent 679b0ec commit 400c3b3

File tree

1 file changed

+30
-26
lines changed

1 file changed

+30
-26
lines changed

test/runtests.jl

+30-26
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ end
285285
# Test unsafe_convert
286286
type A; end
287287
x = "abc"
288-
@test @compat String(Compat.unsafe_convert(Ptr{UInt8}, x)) == x
288+
@test @compat String(unsafe_string(Compat.unsafe_convert(Ptr{UInt8}, x))) == x
289289
Compat.unsafe_convert(::Ptr{A}, x) = x
290290
@test Compat.unsafe_convert(pointer([A()]), 1) == 1
291291

@@ -398,36 +398,40 @@ let A = [1.0 2.0; 3.0 4.0]
398398
end
399399

400400
# Cstring
401-
let s = "foo", w = wstring("foo")
402-
@test reinterpret(Ptr{Cchar}, Compat.unsafe_convert(Cstring, s)) == pointer(s)
401+
let s = "foo"
402+
@test reinterpret(Ptr{Cchar}, Compat.unsafe_convert(Cstring, s.data)) == pointer(s)
403403
if VERSION < v"0.5.0-dev+4859"
404-
@test reinterpret(Ptr{Cwchar_t}, Compat.unsafe_convert(Cwstring, w)) == pointer(w)
404+
let w = wstring("foo")
405+
@test reinterpret(Ptr{Cwchar_t}, Compat.unsafe_convert(Cwstring, w)) == pointer(w)
406+
end
405407
end
406408
end
407409

408410
# fma and muladd
409411
@test fma(3,4,5) == 3*4+5 == muladd(3,4,5)
410412

411-
# is_valid_utf32
412-
s = utf32("abc")
413-
@test isvalid(s)
414-
s = utf32(UInt32[65,0x110000])
415-
@test !isvalid(s)
416-
417-
# isvalid
418-
let s = "abcdef", u8 = "abcdef\uff", u16 = utf16(u8), u32 = utf32(u8),
419-
bad32 = utf32(UInt32[65,0x110000]), badch = Char[0x110000][1]
420-
421-
@test !isvalid(bad32)
422-
@test !isvalid(badch)
413+
if VERSION < v"0.5.0-dev+5271"
414+
# is_valid_utf32
415+
s = utf32("abc")
423416
@test isvalid(s)
424-
@test isvalid(u8)
425-
@test isvalid(u16)
426-
@test isvalid(u32)
427-
@test isvalid(Compat.ASCIIString, s)
428-
@test isvalid(Compat.UTF8String, u8)
429-
@test isvalid(UTF16String, u16)
430-
@test isvalid(UTF32String, u32)
417+
s = utf32(UInt32[65,0x110000])
418+
@test !isvalid(s)
419+
420+
# isvalid
421+
let s = "abcdef", u8 = "abcdef\uff", u16 = utf16(u8), u32 = utf32(u8),
422+
bad32 = utf32(UInt32[65,0x110000]), badch = Char[0x110000][1]
423+
424+
@test !isvalid(bad32)
425+
@test !isvalid(badch)
426+
@test isvalid(s)
427+
@test isvalid(u8)
428+
@test isvalid(u16)
429+
@test isvalid(u32)
430+
@test isvalid(Compat.ASCIIString, s)
431+
@test isvalid(Compat.UTF8String, u8)
432+
@test isvalid(UTF16String, u16)
433+
@test isvalid(UTF32String, u32)
434+
end
431435
end
432436

433437
if VERSION < v"0.5.0-dev+907"
@@ -1190,8 +1194,8 @@ let io = IOBuffer(), s = "hello"
11901194
@test @compat String(s.data) == s
11911195
write(io, s)
11921196
@test @compat String(io) == s
1193-
@test @compat String(pointer(s.data)) == s
1194-
@test @compat String(pointer(s.data),length(s.data)) == s
1197+
@test unsafe_string(pointer(s.data)) == s
1198+
@test unsafe_string(pointer(s.data),length(s.data)) == s
11951199
@test string(s, s, s) == "hellohellohello"
11961200
@test @compat(String(s)) == s
11971201
@test String == @compat(Union{Compat.UTF8String,Compat.ASCIIString})
@@ -1246,5 +1250,5 @@ end
12461250

12471251
# Add test for Base.view
12481252
let a = rand(10,10)
1249-
@test view(a, :, 1) == a[:,1]
1253+
@test view(a, :, 1) == a[:,1]
12501254
end

0 commit comments

Comments
 (0)