-
Notifications
You must be signed in to change notification settings - Fork 19
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
Unit Testing #25
Comments
Just leaving a note as I tried to build a test executable for fun, and got these linker errors: $ cargo 3ds test -vv --no-run --lib |& egrep -o 'undefined reference .+' | sort | uniq
undefined reference to `execvp'
undefined reference to `getpwuid_r'
undefined reference to `getuid'
undefined reference to `pipe'
undefined reference to `pthread_sigmask'
undefined reference to `sigemptyset'
undefined reference to `sysconf' Some of these (particularly |
If the custom test runner lets us use tests implemented for the default runner, there is no problem trying. |
I just discovered this exists: https://doc.rust-lang.org/unstable-book/language-features/custom-test-frameworks.html.
Would need integration with cargo-3ds.
This issue has no priority, but it would be cool if we ever ran out of issues to work on (unlikely...).
The text was updated successfully, but these errors were encountered: