Skip to content

Commit e3d42e6

Browse files
committed
Auto merge of rust-lang#2265 - RalfJung:readme, r=RalfJung
README: multi-seed loop: also test the 0 seed
2 parents 1589ba3 + 54fbd31 commit e3d42e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ randomness that is used to determine allocation base addresses. The following
192192
snippet calls Miri in a loop with different values for the seed:
193193

194194
```
195-
for seed in $({ echo obase=16; seq 255; } | bc); do
195+
for seed in $({ echo obase=16; seq 0 255; } | bc); do
196196
MIRIFLAGS=-Zmiri-seed=$seed cargo miri test || { echo "Last seed: $seed"; break; };
197197
done
198198
```

0 commit comments

Comments
 (0)