123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- use std::{
- env, fs,
- process::{Command, ExitStatus},
- };
- use clap::Args;
- use crate::utils::cargo;
- #[derive(Debug, Args, Clone)]
- pub struct TestArg {
- /// Package Prototyper and Test-Kernel
- #[clap(long)]
- pub pack: bool,
- }
- #[must_use]
- pub fn run(arg: &TestArg) -> Option<ExitStatus> {
- let arch = "riscv64imac-unknown-none-elf";
- let current_dir = env::current_dir();
- let target_dir = current_dir
- .as_ref()
- .unwrap()
- .join("target")
- .join(arch)
- .join("release");
- cargo::Cargo::new("build")
- .package("rustsbi-test-kernel")
- .target(arch)
- .release()
- .status()
- .ok()?;
- let exit_status = Command::new("rust-objcopy")
- .args(["-O", "binary"])
- .arg("--binary-architecture=riscv64")
- .arg(target_dir.join("rustsbi-test-kernel"))
- .arg(target_dir.join("rustsbi-test-kernel.bin"))
- .status()
- .ok()?;
- if arg.pack {
- match fs::exists(target_dir.join("rustsbi-prototyper.bin")) {
- Ok(true) => {}
- Ok(false) => {
- panic!(" Couldn't open \"rustsbi-prototyper.bin\": No such file or directory. Please compile Prototyper first");
- }
- Err(_) => {
- panic!("Can't check existence of file rustsbi-prototyper.bin, please compile Prototyper first");
- }
- }
- fs::copy(
- current_dir
- .as_ref()
- .unwrap()
- .join("test-kernel")
- .join("scripts")
- .join("rustsbi-test-kernel.its"),
- target_dir.join("rustsbi-test-kernel.its"),
- )
- .ok()?;
- env::set_current_dir(&target_dir).ok()?;
- Command::new("mkimage")
- .args(["-f", "rustsbi-test-kernel.its"])
- .arg("rustsbi-test-kernel.itb")
- .status()
- .ok()?;
- fs::remove_file(env::current_dir().unwrap().join("rustsbi-test-kernel.its")).ok()?;
- }
- Some(exit_status)
- }
|