4
0

lib.rs 692 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //! RISC-V Supervisor Binary Interface test suite
  2. #![no_std]
  3. #![deny(warnings, missing_docs)]
  4. #![feature(naked_functions)]
  5. mod thread;
  6. pub extern crate sbi_rt as sbi;
  7. #[cfg(feature = "log")]
  8. mod log_test;
  9. #[cfg(feature = "log")]
  10. pub use log_test::Testing;
  11. // §4
  12. mod base;
  13. pub use base::{Case as BaseCase, Extensions, test as test_base};
  14. // §6
  15. mod time;
  16. pub use time::{Case as TimerCase, test as test_timer};
  17. // §7
  18. mod spi;
  19. pub use spi::{Case as IpiCase, test as test_ipi};
  20. // §8
  21. // pub mod rfnc;
  22. // §9
  23. mod hsm;
  24. pub use hsm::{Case as HsmCase, test as test_hsm};
  25. // §10
  26. // pub mod srst;
  27. // §11
  28. // pub mod pmu;
  29. // §12
  30. mod dbcn;
  31. pub use dbcn::{Case as DbcnCase, test as test_dbcn};