Skip to content

Commit 14ca321

Browse files
authored
fix AV CI script (#143)
* fix AV CI script * fix test on 32 bit
1 parent 1b844be commit 14ca321

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

appveyor.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
environment:
22
matrix:
3-
- julia_version: 1
3+
- julia_version: 1.0
4+
- julia_version: 1.1
45
- julia_version: nightly
56

67
platform:
78
- x86 # 32-bit
89
- x64 # 64-bit
910

10-
matrix:
11-
allow_failures:
12-
- julia_version: nightly
13-
1411
branches:
1512
only:
1613
- master

test/interpret.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,9 +319,9 @@ f113(;x) = x
319319

320320
@testset "locals" begin
321321
f_locals(x::Int64, y::T, z::Vararg{Symbol}) where {T} = x
322-
frame = JuliaInterpreter.enter_call(f_locals, 1, 2.0, :a, :b)
322+
frame = JuliaInterpreter.enter_call(f_locals, Int64(1), 2.0, :a, :b)
323323
locals = JuliaInterpreter.locals(frame)
324-
@test JuliaInterpreter.Variable(1, :x, false) in locals
324+
@test JuliaInterpreter.Variable(Int64(1), :x, false) in locals
325325
@test JuliaInterpreter.Variable(2.0, :y, false) in locals
326326
@test JuliaInterpreter.Variable((:a, :b), :z, false) in locals
327327
@test JuliaInterpreter.Variable(Float64, :T, true) in locals

0 commit comments

Comments
 (0)