test.rs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. cargo::Cargo::new("build")
  24. .package("rustsbi-test-kernel")
  25. .target(arch)
  26. .release()
  27. .status()
  28. .ok()?;
  29. let exit_status = Command::new("rust-objcopy")
  30. .args(["-O", "binary"])
  31. .arg("--binary-architecture=riscv64")
  32. .arg(target_dir.join("rustsbi-test-kernel"))
  33. .arg(target_dir.join("rustsbi-test-kernel.bin"))
  34. .status()
  35. .ok()?;
  36. if arg.pack {
  37. match fs::exists(target_dir.join("rustsbi-prototyper.bin")) {
  38. Ok(true) => {}
  39. Ok(false) => {
  40. panic!(" Couldn't open \"rustsbi-prototyper.bin\": No such file or directory. Please compile Prototyper first");
  41. }
  42. Err(_) => {
  43. panic!("Can't check existence of file rustsbi-prototyper.bin, please compile Prototyper first");
  44. }
  45. }
  46. fs::copy(
  47. current_dir
  48. .as_ref()
  49. .unwrap()
  50. .join("test-kernel")
  51. .join("scripts")
  52. .join("rustsbi-test-kernel.its"),
  53. target_dir.join("rustsbi-test-kernel.its"),
  54. )
  55. .ok()?;
  56. env::set_current_dir(&target_dir).ok()?;
  57. Command::new("mkimage")
  58. .args(["-f", "rustsbi-test-kernel.its"])
  59. .arg("rustsbi-test-kernel.itb")
  60. .status()
  61. .ok()?;
  62. fs::remove_file(env::current_dir().unwrap().join("rustsbi-test-kernel.its")).ok()?;
  63. }
  64. Some(exit_status)
  65. }