Skip to content

Commit d98be33

Browse files
committed
Remove -Z list
1 parent 92c3f66 commit d98be33

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scripts/run-kani.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ get_kani_path() {
182182
# then update EXPECTED_JSON_FILE_VERSION.
183183
get_harnesses() {
184184
local kani_path="$1"
185-
"$kani_path" list -Z list $unstable_args ./library --std --format json
185+
"$kani_path" list $unstable_args ./library --std --format json
186186
local json_file_version=$(jq -r '.["file-version"]' "$WORK_DIR/kani-list.json")
187187
if [[ $json_file_version != $EXPECTED_JSON_FILE_VERSION ]]; then
188188
echo "Error: The JSON file-version in kani-list.json does not equal $EXPECTED_JSON_FILE_VERSION"
@@ -313,17 +313,17 @@ main() {
313313
elif [[ "$run_command" == "list" ]]; then
314314
echo "Running Kani list command..."
315315
if [[ "$with_autoharness" == "true" ]]; then
316-
"$kani_path" autoharness -Z autoharness --list -Z list $unstable_args --std ./library --format markdown
316+
"$kani_path" autoharness -Z autoharness --list $unstable_args --std ./library --format markdown
317317
else
318-
"$kani_path" list -Z list $unstable_args ./library --std --format markdown
318+
"$kani_path" list $unstable_args ./library --std --format markdown
319319
fi
320320
elif [[ "$run_command" == "metrics" ]]; then
321321
local current_dir=$(pwd)
322322
echo "Running Kani list command..."
323323
if [[ "$with_autoharness" == "true" ]]; then
324-
"$kani_path" autoharness -Z autoharness --list -Z list $unstable_args --std ./library --format json
324+
"$kani_path" autoharness -Z autoharness --list $unstable_args --std ./library --format json
325325
else
326-
"$kani_path" list -Z list $unstable_args ./library --std --format json
326+
"$kani_path" list $unstable_args ./library --std --format json
327327
fi
328328
pushd scripts/kani-std-analysis
329329
echo "Running Kani's std-analysis command..."

0 commit comments

Comments
 (0)