File: stress.sh

package info (click to toggle)
apparmor 2.13.6-10
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 28,604 kB
  • sloc: python: 18,892; ansic: 17,618; perl: 11,105; sh: 10,465; cpp: 5,413; yacc: 1,950; makefile: 1,729; lex: 1,105; pascal: 1,097; ruby: 374; exp: 250; java: 212; xml: 159
file content (20 lines) | stat: -rwxr-xr-x 455 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

. ./uservars.inc

${subdomain_parser} change_hat.profile child.profile open.profile

rm -f /tmp/foobar && touch /tmp/foobar

./open & ./open /tmp/foobar &

./child & ./child &

./change_hat > /dev/null 2>&1 & ./change_hat /tmp/foo > /dev/null 2>&1 &

while :
do
	${subdomain_parser} -r change_hat.profile > /dev/null 2>&1 &
	${subdomain_parser} -r child.profile > /dev/null 2>&1 &
	${subdomain_parser} -r open.profile > /dev/null 2>&1 &
done &