Skip to content

Commit 1a38674

Browse files
authored
Add missing line separator (rust-lang#232)
Fix a typo introduced in rust-lang#229 that prevents `kani-args` from getting passed to the `kani` command. This was discovered by @tengjiang (see model-checking#231). By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.
1 parent 5da586f commit 1a38674

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/run-kani.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ main() {
288288
# Run verification for all harnesses (not in parallel)
289289
echo "Running Kani verify-std command..."
290290
"$kani_path" verify-std -Z unstable-options ./library \
291-
$unstable_args
291+
$unstable_args \
292292
$command_args \
293293
--enable-unstable \
294294
--cbmc-args --object-bits 12

0 commit comments

Comments
 (0)