From 226e9611b359c6291d30a8d07604e56cd3e90309 Mon Sep 17 00:00:00 2001 From: Anisse Astier Date: Sat, 15 Jun 2024 19:19:59 +0200 Subject: [PATCH] debug windows test failure --- tests/fusetests.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/fusetests.rs b/tests/fusetests.rs index 6dc1828..4595110 100644 --- a/tests/fusetests.rs +++ b/tests/fusetests.rs @@ -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) -> 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) {