-
Notifications
You must be signed in to change notification settings - Fork 225
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
feat: first iteration of C client library #636
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #636 +/- ##
==========================================
+ Coverage 81.21% 81.38% +0.16%
==========================================
Files 192 195 +3
Lines 27061 26198 -863
Branches 4943 4660 -283
==========================================
- Hits 21978 21320 -658
+ Misses 3445 3281 -164
+ Partials 1638 1597 -41 ☔ View full report in Codecov by Sentry. |
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.
Just some style comments for the first pass
static char *bools[] = {"0", "1", NULL}; | ||
|
||
static MunitParameterEnum client_params[] = { | ||
{"disk_mode", bools}, |
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 would just ditch the disk mode param since the old disk mode is going away
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.
This file is copied from existing tests, just renamed to better reflect what it is still testing. Should I remove the param before the old disk mode goes away?
This is not a priority for the time being. |
No description provided.