aboutsummaryrefslogtreecommitdiffstats
path: root/test/stress/stress.sh
diff options
context:
space:
mode:
authorLibravatar a1346054 <36859588+a1346054@users.noreply.github.com>2022-09-13 21:10:03 +0000
committerLibravatar a1346054 <36859588+a1346054@users.noreply.github.com>2022-09-13 22:37:20 +0000
commit4d1fb9af6e4194099b15c29ed7a70885415774d6 (patch)
tree5b60c0c69a2f5315387eebc23fa3e1b8858da339 /test/stress/stress.sh
parenttests: use bash-style [[...]] instead of [...] (diff)
downloadfirejail-4d1fb9af6e4194099b15c29ed7a70885415774d6.tar.gz
firejail-4d1fb9af6e4194099b15c29ed7a70885415774d6.tar.zst
firejail-4d1fb9af6e4194099b15c29ed7a70885415774d6.zip
tests: use bash-builtin instead of external `seq`
Diffstat (limited to 'test/stress/stress.sh')
-rwxr-xr-xtest/stress/stress.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/stress/stress.sh b/test/stress/stress.sh
index 675cb0614..2b4d8147d 100755
--- a/test/stress/stress.sh
+++ b/test/stress/stress.sh
@@ -14,7 +14,7 @@ mkdir ~/fj-stress-test
14rm blacklist.profile 14rm blacklist.profile
15rm noblacklist.profile 15rm noblacklist.profile
16rm env.profile 16rm env.profile
17for i in `seq 1 100`; 17for i in {1..100}
18do 18do
19 echo "hello" > ~/fj-stress-test/testfile$i 19 echo "hello" > ~/fj-stress-test/testfile$i
20 echo "blacklist ~/fj-stress-test/testfile$i" >> blacklist.profile 20 echo "blacklist ~/fj-stress-test/testfile$i" >> blacklist.profile