-
Notifications
You must be signed in to change notification settings - Fork 157
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
Test Suite Overhaul and Improvement #294
Comments
Checklist (Subject to Change):C types
Global Variables
Function Invocation
Memory
Library Loading
Annotations
Final Touches
After CompletionProbably turn these into their own issues upon completion:
|
Great list and great initiative to start pushing this forward! We can swipe examples from the various places we have them and turn them into nice readable tests. This will improve documentation as well as coverage. Let me know where I can help! |
Hello. Is there any news related to a struct being passed by value? Returning a struct and passing a struct into a parameter to a native function? I know it's related to: Right now, I'm kinda stuck because I have to call some native functions and pass structs as value. I have the source code of the native library (it's an open source project) but making changes to the code will be a nightmare. I love JNR (congrats! :)) but I'm also thinking on mixing with JNA. JNA deals with struct by value: https://segmentfault.com/a/1190000041817628/en What do you think about the idea of combining JNR and JNA? Using JNA just to make the calls of the methods having struct by value. |
I think it's probably best for us to have the missing functionality in JNR. I am not opposed to working toward merging or sharing some backend logic for JNR and JNA, and of course we're all looking forward to Project Panama. |
We have a project that we have to create a Java Binding of an IoT solution which is written in C. I'm gonna share a little bit of our experience so far:
So... no perfect solution. What we did is: go back to JNR and change some native functions (we have the source because it's a open source project). We still don't know if at the end of the day we will have success but it's the path that we have chosen. Also, I don't like to apply a patch to an open source project before using JNR. If you decided to carry on with the implementation of the "struct by value" in JNR maybe we can help. |
The current test suite is good but doesn't cover many cases well enough and sometimes not at all.
I feel the quality and coverage of the tests can and should be significantly improved to be able to:
This relates partially to #253, since both are proposed so that we can have an easier time improving the existing code, especially regarding simplifying the code and improving and understanding performance.
This is a large endeavor that is more akin to multiple issues and will be fixed with multiple PRs each improving a small section of the test suite.
The text was updated successfully, but these errors were encountered: