test.rs 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. use std::{
  2. env, fs,
  3. process::{Command, ExitStatus},
  4. };
  5. use clap::Args;
  6. use crate::utils::cargo;
  7. #[derive(Debug, Args, Clone)]
  8. pub struct TestArg {
  9. /// Package Prototyper and Test-Kernel
  10. #[clap(long)]
  11. pub pack: bool,
  12. }
  13. #[must_use]
  14. pub fn run(arg: &TestArg) -> Option<ExitStatus> {
  15. let arch = "riscv64imac-unknown-none-elf";
  16. let current_dir = env::current_dir();
  17. let target_dir = current_dir
  18. .as_ref()
  19. .unwrap()
  20. .join("target")
  21. .join(arch)
  22. .join("release");
  23. info!("Building test kernel");
  24. cargo::Cargo::new("build")
  25. .package("rustsbi-test-kernel")
  26. .target(arch)
  27. .release()
  28. .status()
  29. .ok()?;
  30. info!("Copy to binary");
  31. let exit_status = Command::new("rust-objcopy")
  32. .args(["-O", "binary"])
  33. .arg("--binary-architecture=riscv64")
  34. .arg(target_dir.join("rustsbi-test-kernel"))
  35. .arg(target_dir.join("rustsbi-test-kernel.bin"))
  36. .status()
  37. .ok()?;
  38. if arg.pack {
  39. info!("Pack to image");
  40. match fs::exists(target_dir.join("rustsbi-prototyper.bin")) {
  41. Ok(true) => {}
  42. Ok(false) => {
  43. panic!(
  44. " Couldn't open \"rustsbi-prototyper.bin\": No such file or directory. Please compile Prototyper first"
  45. );
  46. }
  47. Err(_) => {
  48. panic!(
  49. "Can't check existence of file rustsbi-prototyper.bin, please compile Prototyper first"
  50. );
  51. }
  52. }
  53. fs::copy(
  54. current_dir
  55. .as_ref()
  56. .unwrap()
  57. .join("prototyper")
  58. .join("test-kernel")
  59. .join("scripts")
  60. .join("rustsbi-test-kernel.its"),
  61. target_dir.join("rustsbi-test-kernel.its"),
  62. )
  63. .ok()?;
  64. env::set_current_dir(&target_dir).ok()?;
  65. Command::new("mkimage")
  66. .args(["-f", "rustsbi-test-kernel.its"])
  67. .arg("rustsbi-test-kernel.itb")
  68. .status()
  69. .ok()?;
  70. fs::remove_file(env::current_dir().unwrap().join("rustsbi-test-kernel.its")).ok()?;
  71. }
  72. Some(exit_status)
  73. }