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 d8234ea commit cd866fdCopy full SHA for cd866fd
1 file changed
test/gcext/gcext-test.jl
@@ -31,12 +31,15 @@ end
31
errlines = fetch(err_task)
32
lines = fetch(out_task)
33
@test length(errlines) == 0
34
- @test length(lines) == 6
+ # @test length(lines) == 6
35
+ @test length(lines) == 5
36
@test checknum(lines[2], r"([0-9]+) full collections", n -> n >= 10)
37
@test checknum(lines[3], r"([0-9]+) partial collections", n -> n > 0)
38
@test checknum(lines[4], r"([0-9]+) object sweeps", n -> n > 0)
39
# @test checknum(lines[5], r"([0-9]+) internal object scan failures",
40
# n -> n == 0)
- @test checknum(lines[6], r"([0-9]+) corrupted auxiliary roots",
41
+ # @test checknum(lines[6], r"([0-9]+) corrupted auxiliary roots",
42
+ # n -> n == 0)
43
+ @test checknum(lines[5], r"([0-9]+) corrupted auxiliary roots",
44
n -> n == 0)
45
end
0 commit comments