From 30344174e6a3575c87849af3a282bf21368d9494 Mon Sep 17 00:00:00 2001 From: Scott Beamer Date: Sat, 26 Oct 2024 10:32:55 -0700 Subject: [PATCH] fix brew test riscv-tools --- riscv-tools.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riscv-tools.rb b/riscv-tools.rb index f505e3f..50db55b 100644 --- a/riscv-tools.rb +++ b/riscv-tools.rb @@ -24,6 +24,6 @@ def install return 0; }") system "#{Formula["riscv-gnu-toolchain"].opt_prefix}/bin/riscv64-unknown-elf-gcc", (testpath/"hello.c") - assert_equal "bbl loader\r\nhello", shell_output("spike pk #{testpath}/a.out") + assert_equal "hello", shell_output("spike pk #{testpath}/a.out") end end