Skip to content

Commit eceea75

Browse files
committed
FIX 32 bit test and do not test expandpath on windows
1 parent bc5c2dd commit eceea75

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/intfuncs.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
@test leading_ones(uint32(int64(2) ^ 32 - 2)) == 31
8888
@test leading_ones(1) == 0
8989
@test leading_zeros(int32(1)) == 31
90-
@test leading_zeros(uint32(2 ^ 32 - 2)) == 0
90+
@test leading_zeros(uint32(int64(2) ^ 32 - 2)) == 0
9191

9292
@test isqrt(4) == 2
9393
@test isqrt(5) == 2

test/path.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
@unix_only @test isabspath("/") == true
44
@test isabspath("~") == false
5-
@test isabspath(expanduser("~")) == true
5+
@unix_only @test isabspath(expanduser("~")) == true

0 commit comments

Comments
 (0)