From d31c82bcfb1b58a1a20bebed93eef635ff42fb45 Mon Sep 17 00:00:00 2001 From: Georg Wiese Date: Mon, 11 Dec 2023 17:22:32 +0100 Subject: [PATCH] No, test not working --- riscv/tests/riscv.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/riscv/tests/riscv.rs b/riscv/tests/riscv.rs index 909f97752..a7e5b6875 100644 --- a/riscv/tests/riscv.rs +++ b/riscv/tests/riscv.rs @@ -165,6 +165,7 @@ fn test_many_chunks_dry() { #[test] #[ignore = "Too slow"] +#[should_panic(expected = "Verified did not say 'PIL OK'.")] fn test_many_chunks() { // Compiles and runs the many_chunks.rs example with continuations, runs the full // witness generation & verifies it using Pilcom. @@ -185,7 +186,8 @@ fn test_many_chunks() { verify_pipeline(pipeline, vec![], vec![]); Ok(()) }; - rust_continuations(pipeline_factory, pipeline_callback, vec![]).unwrap(); + let bootloader_inputs = rust_continuations_dry_run(pipeline_factory(), vec![]); + rust_continuations(pipeline_factory, pipeline_callback, bootloader_inputs).unwrap(); } fn verify_file(case: &str, inputs: Vec, coprocessors: &CoProcessors) {