Skip to content

Commit 996a8d6

Browse files
committed
uncomment now passing tests
1 parent 1ad01d9 commit 996a8d6

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
@@ -1365,17 +1365,13 @@ end
13651365
x, y = rand(), rand()
13661366
result = f24852_kernel(x, y)
13671367

1368-
# TODO: The commented out tests here are the ones where `signature_for_inference_heuristics`
1369-
# is inflated; these tests cause segfaults. Probably due to incorrect CodeInfo
1370-
# construction/initialization happening somewhere...
1371-
13721368
@test result === f24852_late_expr(x, y)
13731369
@test result === f24852_late_uninflated(x, y)
1374-
# @test result === f24852_late_inflated(x, y)
1370+
@test result === f24852_late_inflated(x, y)
13751371

13761372
@test result === f24852_early_expr(x, y)
13771373
@test result === f24852_early_uninflated(x, y)
1378-
# @test result === f24852_early_inflated(x, y)
1374+
@test result === f24852_early_inflated(x, y)
13791375

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

0 commit comments

Comments
 (0)