Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions scripts/run-kani.sh
Original file line number Diff line number Diff line change
Expand Up @@ -315,15 +315,17 @@ main() {
elif [[ "$run_command" == "list" ]]; then
echo "Running Kani list command..."
if [[ "$with_autoharness" == "true" ]]; then
"$kani_path" autoharness -Z autoharness --list $unstable_args --std ./library --format markdown
"$kani_path" autoharness -Z autoharness --list $unstable_args --std ./library --format markdown \
"${command_args[@]}"
else
"$kani_path" list $unstable_args ./library --std --format markdown
fi
elif [[ "$run_command" == "metrics" ]]; then
local current_dir=$(pwd)
echo "Running Kani list command..."
if [[ "$with_autoharness" == "true" ]]; then
"$kani_path" autoharness -Z autoharness --list $unstable_args --std ./library --format json
"$kani_path" autoharness -Z autoharness --list $unstable_args --std ./library --format json \
"${command_args[@]}"
else
"$kani_path" list $unstable_args ./library --std --format json
fi
Expand Down
Loading