-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[compiler-v2] add test cases for lambda #14791
Conversation
⏱️ 3h 43m total CI duration on this PR
|
61459eb
to
0f3224a
Compare
78767d3
to
7f59256
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #14791 +/- ##
=======================================
Coverage 60.1% 60.1%
=======================================
Files 856 856
Lines 210845 210845
=======================================
+ Hits 126742 126761 +19
+ Misses 84103 84084 -19 ☔ View full report in Codecov by Sentry. |
options: opts | ||
.clone() | ||
// .set_experiment(Experiment::AST_SIMPLIFY, true) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove this commented out code?
@@ -213,7 +214,7 @@ const TEST_CONFIGS: Lazy<BTreeMap<&str, TestConfig>> = Lazy::new(|| { | |||
TestConfig { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the comment above, add "lambdas" as well.
|
||
|
||
Diagnostics: | ||
error: local `a_less_b` of type `|(T, T)|bool` does not have the `copy` ability |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am assuming we should we ignore weird errors in lambda.exp
for now, because these will change once lambdas are implemented?
ae73f37
to
243ea0f
Compare
a8dba3c
to
9b0ccd6
Compare
243ea0f
to
f3d30eb
Compare
9b0ccd6
to
e8a6216
Compare
0cc6890
to
1b54f30
Compare
a050828
to
8a317b8
Compare
ad600f0
to
017f471
Compare
8a317b8
to
f72846f
Compare
017f471
to
b7d429a
Compare
b7d429a
to
c99de22
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
d3254ad
to
7e21319
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
7e21319
to
7cfe2c4
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
✅ Forge suite
|
✅ Forge suite
|
✅ Forge suite
|
Description
Add a
/lambda/
test subdir formove-compiler-v2
, and test it withLAMBDA
experiments off (.exp
) and on (.lambda.exp
).How Has This Been Tested?
This is just a test.
Key Areas to Review
Observe baselines. Can you think of any other useful tests to include? If not, just approve, please.
Type of Change
Which Components or Systems Does This Change Impact?
Checklist