We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ddd721 commit f5c55e8Copy full SHA for f5c55e8
test/misc.jl
@@ -499,12 +499,12 @@ begin
499
local second = @capture_stdout @time @eval calldouble2(1.0)
500
501
# these functions were not recompiled
502
- local matches = collect(eachmatch(r"(\d+(?:\.\d+)?)%", first))
+ local matches = collect(eachmatch(r"(\d+(?:\.\d+)?)% compilation", first))
503
@test length(matches) == 1
504
@test parse(Float64, matches[1][1]) > 0.0
505
@test parse(Float64, matches[1][1]) <= 100.0
506
507
- matches = collect(eachmatch(r"(\d+(?:\.\d+)?)%", second))
+ matches = collect(eachmatch(r"(\d+(?:\.\d+)?)% compilation", second))
508
509
510
0 commit comments