Skip to content

Commit

Permalink
tests: use bash-builtin instead of external seq
Browse files Browse the repository at this point in the history
  • Loading branch information
a1346054 committed Sep 13, 2022
1 parent 7a5c2b2 commit 4d1fb9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/stress/stress.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ mkdir ~/fj-stress-test
rm blacklist.profile
rm noblacklist.profile
rm env.profile
for i in `seq 1 100`;
for i in {1..100}
do
echo "hello" > ~/fj-stress-test/testfile$i
echo "blacklist ~/fj-stress-test/testfile$i" >> blacklist.profile
Expand Down

0 comments on commit 4d1fb9a

Please sign in to comment.