Skip to content

Commit

Permalink
debug windows test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
anisse committed Jun 15, 2024
1 parent e769ebc commit 226e961
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/fusetests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ fn parse_cpu_regs(input: Vec<&str>, r: &mut cpu::Regs, halted: &mut bool) -> Res
}
fn parse_memory_values(input: Vec<&str>, memory_values: &mut Vec<MemValues>) -> Result<(), String> {
for l in input.iter().filter(|l| **l != "-1") {
println!("test line: '{l}'");
let mem: Vec<&str> = l.split_ascii_whitespace().collect();
//parse address and all value
let base_addr = match u16::from_str_radix(mem[0], 16) {
Expand Down

0 comments on commit 226e961

Please sign in to comment.