From 7e11776a261a053f846176f39db9e02f9fb11250 Mon Sep 17 00:00:00 2001 From: Carolyn Zech Date: Tue, 19 Nov 2024 11:53:06 -0500 Subject: [PATCH] use markdown table format --- scripts/run-kani.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-kani.sh b/scripts/run-kani.sh index e8f0dc42193d6..361336adbad3f 100755 --- a/scripts/run-kani.sh +++ b/scripts/run-kani.sh @@ -205,7 +205,7 @@ main() { --cbmc-args --object-bits 12 elif [[ "$run_command" == "list" ]]; then echo "Running Kani list command..." - "$kani_path" list -Z list -Z function-contracts -Z mem-predicates ./library --std > $path/kani_list.txt + "$kani_path" list -Z list -Z function-contracts -Z mem-predicates ./library --std --format markdown > $path/kani_list.txt fi }