You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! I'd like to ask if this crate supports two features:
Can I use nextest in a no_std environment?
Can I implement my own test-framework with nextest?
Context
I'm currently trying to implement a kernel in rust, so I'd need to tell cargo somehow to start qemu and running the executable in it. Sadly, the provided custom_test_framework feature gives me a lot of problems and it's eRFC is sadly closed. So it's not easy (or with only a lot of work) to have a working testing environment without std.
The text was updated successfully, but these errors were encountered:
Nextest itself isn't no_std compatible, however you can run no_std tests for it using a target runner. I think based on what you've described, trying out a target runner might be the best approach.
Can I implement my own test-framework with nextest?
I'm not entirely sure what this means. Nextest is open source and you're free to do whatever you like with it, of course. But nextest is a custom test runner, not a framework or harness.
Hello! I'd like to ask if this crate supports two features:
no_std
environment?nextest
?Context
I'm currently trying to implement a kernel in rust, so I'd need to tell cargo somehow to start
qemu
and running the executable in it. Sadly, the providedcustom_test_framework
feature gives me a lot of problems and it's eRFC is sadly closed. So it's not easy (or with only a lot of work) to have a working testing environment without std.The text was updated successfully, but these errors were encountered: