Skip to content

Commit

Permalink
fix ci bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
Clo91eaf committed Mar 18, 2024
1 parent 96b4d09 commit a4dbc88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/am-tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ mod rv64ui_p {
#[test]
fn $name() -> anyhow::Result<()> {
let mut root = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
root.push("dependencies/tests/am-tests");
root.push("dependencies/tests/bin/am-tests");
root.push(stringify!($name).to_owned().replace("_", "-"));

let mut file = File::open("/tmp/bin")?;
let mut file = File::open(root)?;
let mut data = Vec::new();
file.read_to_end(&mut data)?;

Expand Down

0 comments on commit a4dbc88

Please sign in to comment.