From 4a3ed8b3ceddccc61c558ee03157f4c5c691f9ad Mon Sep 17 00:00:00 2001 From: svv232 Date: Sun, 1 Dec 2024 17:35:48 -0500 Subject: [PATCH 1/2] removing ignore pragma for successfully passing fibb 7 test --- o1vm/tests/test_riscv_elf.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/o1vm/tests/test_riscv_elf.rs b/o1vm/tests/test_riscv_elf.rs index 7b278a3a8e..2ecda3d173 100644 --- a/o1vm/tests/test_riscv_elf.rs +++ b/o1vm/tests/test_riscv_elf.rs @@ -52,7 +52,6 @@ fn test_no_action() { // FIXME: stop ignoring when all the instructions are implemented. #[test] -#[ignore] fn test_fibonacci_7() { let curr_dir = std::env::current_dir().unwrap(); let path = curr_dir.join(std::path::PathBuf::from( From 72b6d4d8fca064efa9fe444d1c0ac9ce2bab5899 Mon Sep 17 00:00:00 2001 From: svv232 Date: Sun, 1 Dec 2024 17:59:10 -0500 Subject: [PATCH 2/2] removing FIXME comment --- o1vm/tests/test_riscv_elf.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/o1vm/tests/test_riscv_elf.rs b/o1vm/tests/test_riscv_elf.rs index 2ecda3d173..cae094a530 100644 --- a/o1vm/tests/test_riscv_elf.rs +++ b/o1vm/tests/test_riscv_elf.rs @@ -50,7 +50,6 @@ fn test_no_action() { assert_eq!(witness.registers.general_purpose[17], 42); } -// FIXME: stop ignoring when all the instructions are implemented. #[test] fn test_fibonacci_7() { let curr_dir = std::env::current_dir().unwrap();