@@ -258,7 +258,9 @@ let exename = `$(Base.julia_cmd()) --startup-file=no`
258
258
mktempdir () do dir
259
259
helperdir = joinpath (@__DIR__ , " testhelpers" )
260
260
inputfile = joinpath (helperdir, " coverage_file.jl" )
261
- expected = replace (read (joinpath (helperdir, " coverage_file.info" ), String),
261
+ expected = replace (read (joinpath (helperdir, " coverage_file.info.bad" ), String),
262
+ " <FILENAME>" => realpath (inputfile))
263
+ expected_good = replace (read (joinpath (helperdir, " coverage_file.info" ), String),
262
264
" <FILENAME>" => realpath (inputfile))
263
265
covfile = replace (joinpath (dir, " coverage.info" ), " %" => " %%" )
264
266
@test ! isfile (covfile)
@@ -276,18 +278,21 @@ let exename = `$(Base.julia_cmd()) --startup-file=no`
276
278
got = read (covfile, String)
277
279
rm (covfile)
278
280
@test occursin (expected, got) || (expected, got)
281
+ @test_broken occursin (expected_good, got)
279
282
@test readchomp (` $exename -E "Base.JLOptions().code_coverage" -L $inputfile
280
283
--code-coverage=$covfile --code-coverage=user` ) == " 1"
281
284
@test isfile (covfile)
282
285
got = read (covfile, String)
283
286
rm (covfile)
284
287
@test occursin (expected, got) || (expected, got)
288
+ @test_broken occursin (expected_good, got)
285
289
@test readchomp (` $exename -E "Base.JLOptions().code_coverage" -L $inputfile
286
290
--code-coverage=$covfile --code-coverage=all` ) == " 2"
287
291
@test isfile (covfile)
288
292
got = read (covfile, String)
289
293
rm (covfile)
290
294
@test occursin (expected, got) || (expected, got)
295
+ @test_broken occursin (expected_good, got)
291
296
end
292
297
293
298
# --track-allocation
0 commit comments