Skip to content

Commit

Permalink
only test TableReader on 64 bit
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC committed Aug 16, 2019
1 parent dd56353 commit 1fa9d81
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/interpret.jl
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,8 @@ module CSVTest
using JuliaInterpreter
using TableReader
const myfile = "smallcsv.csv"
@test (@interpret readcsv(myfile)) == readcsv(myfile)
if sizeof(Int) == 8 # TableReader seems to not work on 32 bit
@test (@interpret readcsv(myfile)) == readcsv(myfile)
end
end

0 comments on commit 1fa9d81

Please sign in to comment.