Skip to content

Commit 9062295

Browse files
committed
uncomment now passing tests
1 parent 8f1b681 commit 9062295

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

test/inference.jl

+2-6
Original file line numberDiff line numberDiff line change
@@ -1381,17 +1381,13 @@ end
13811381
x, y = rand(), rand()
13821382
result = f24852_kernel(x, y)
13831383

1384-
# TODO: The commented out tests here are the ones where `signature_for_inference_heuristics`
1385-
# is inflated; these tests cause segfaults. Probably due to incorrect CodeInfo
1386-
# construction/initialization happening somewhere...
1387-
13881384
@test result === f24852_late_expr(x, y)
13891385
@test result === f24852_late_uninflated(x, y)
1390-
# @test result === f24852_late_inflated(x, y)
1386+
@test result === f24852_late_inflated(x, y)
13911387

13921388
@test result === f24852_early_expr(x, y)
13931389
@test result === f24852_early_uninflated(x, y)
1394-
# @test result === f24852_early_inflated(x, y)
1390+
@test result === f24852_early_inflated(x, y)
13951391

13961392
# TODO: test that `expand_early = true` + inflated `signature_for_inference_heuristics`
13971393
# can be used to tighten up some inference result.

0 commit comments

Comments
 (0)