-
Notifications
You must be signed in to change notification settings - Fork 0
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
Last report on test failures #184
Comments
CC: @lysnikolaou what's your availability to work on the project? (To start organising work) |
@isidentical Are the number of failures just distinct tests failing or are independent problems? |
CC: @superbobry as you mentioned you wanted to help with the project. |
Each row is an independent failure / problem. The numbers are just representing how many times a problem has repeated in the test suite (i.e., we have 80 test fails but fixing a single fix might get rid of 27 failures at once). |
I'll most probably be able to work ~7-8 hours/week on this. |
Ok, I propose that we should start focusing on the bugs and new allowed behaviour and then do a push together at the end to fix all error messages. So let's focus on everything marked as "bug" or "new feature" on the table. By the way, I was thinking that we should restrict the number of levels an f-string can be nested. This way we don't need to deal with deallocating and allocating memory for the buffer (we will use a statically allocated array of fixed-lenght) and we can probably help the problems in #169. For #169, one approach we can do is store the information of the last poped item separately so we never reset it and add some asserts to make sure they match when we retrieve it. |
For |
For |
I just checked and seems like we are forbidding it.
I think it is just an error message mismatch. |
hey, I'm gonna work on these during the sprints. For now, I'm trying to undersand everything that's going on in #169 and fix it. After that, I'm probably working on |
@lysnikolaou @pablogsal unfortunately I can't attend sprints in-person this year :( But if there is anything from my side that you might need, would be happy to help to finalize this project 🚀 |
This should be now fixed no?
|
@isidentical can you refresh the table? Seems that a bunch of these are fixed now? Maybe do it after #199 is landed |
Yep, that's the plan! But a nice information I can offer is that, with #199; we are fully compatible with the existing parser in the real world code so it might be safe to assume that the remaining problems are error message noises. |
Updated the test failure sheet (re analyzed all the failures), only 2 out of 87 failures (the number of individual tests [or subtests] that are failing) seems to be about a geniunine problem (over-expressive grammar where something that wasn't possible is now possible).
|
It seems like there are ~80 test failures (from 14 distinctive groups/individual tests). I think we should look into which ones we should prioritize and which ones we'll left behind (e.g error messages can be the last ones).
test_mismatched_braces
(f'{3:{{>10}'
)test_no_backslashes_in_expression_part
(rf'{"\N{LEFT CURLY BRACKET}"}'
)test_comments
test_compile_time_concat
test_conversions
test_format_specifier_expressions
test_invalid_syntax_error_message
test_lambda
test_mismatched_braces
test_mismatched_parens
test_missing_expression
test_no_backslashes_in_expression_part
test_unterminated_string
test_syntax_error_for_starred_expressions
test_parens_in_expressions
The text was updated successfully, but these errors were encountered: