Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 87ef202

Browse files
committedJan 9, 2018
uncomment now passing tests
1 parent d9b5786 commit 87ef202

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
@@ -1370,17 +1370,13 @@ end
13701370
x, y = rand(), rand()
13711371
result = f24852_kernel(x, y)
13721372

1373-
# TODO: The commented out tests here are the ones where `signature_for_inference_heuristics`
1374-
# is inflated; these tests cause segfaults. Probably due to incorrect CodeInfo
1375-
# construction/initialization happening somewhere...
1376-
13771373
@test result === f24852_late_expr(x, y)
13781374
@test result === f24852_late_uninflated(x, y)
1379-
# @test result === f24852_late_inflated(x, y)
1375+
@test result === f24852_late_inflated(x, y)
13801376

13811377
@test result === f24852_early_expr(x, y)
13821378
@test result === f24852_early_uninflated(x, y)
1383-
# @test result === f24852_early_inflated(x, y)
1379+
@test result === f24852_early_inflated(x, y)
13841380

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

0 commit comments

Comments
 (0)
Please sign in to comment.