-
Notifications
You must be signed in to change notification settings - Fork 11
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
run list tests #1278
run list tests #1278
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1278 +/- ##
==========================================
- Coverage 91.32% 89.38% -1.94%
==========================================
Files 96 106 +10
Lines 11846 13299 +1453
Branches 2675 3043 +368
==========================================
+ Hits 10818 11887 +1069
- Misses 1028 1412 +384 ☔ View full report in Codecov by Sentry. |
c_runtime/bosatsu_runtime.c
Outdated
while (slots > 0) { | ||
release_value(items); | ||
items = items + 1; | ||
slots = slots - 1; | ||
} | ||
free(items0); |
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.
we don't need to do this... this memory was allocated in the same malloc as s.
this runs the tests for the Bosatsu/List module using the generated C code.
Two tests currently fail (I'm sure there are many bugs still to squash).