~ubuntu-branches/ubuntu/raring/apparmor/raring

« back to all changes in this revision

Viewing changes to tests/stress/subdomain/s-2.4.20.sh

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook
  • Date: 2007-03-23 16:42:01 UTC
  • Revision ID: james.westby@ubuntu.com-20070323164201-jkax6f0oku087b7l
Tags: upstream-2.0.1+510.dfsg
ImportĀ upstreamĀ versionĀ 2.0.1+510.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
subdomain_parser=./subdomain_parser
 
4
 
 
5
cat change_hat.profile child.profile open.profile | ${subdomain_parser}
 
6
 
 
7
#./open & ./open /tmp/foobar &
 
8
 
 
9
#./child & ./child &
 
10
 
 
11
#./change_hat > /dev/null 2>&1 & ./change_hat /tmp/foo > /dev/null 2>&1 &
 
12
 
 
13
while :
 
14
do
 
15
        cat change_hat.profile | ${subdomain_parser} -r > /dev/null 2>&1 &
 
16
        cat child.profile | ${subdomain_parser} -r > /dev/null 2>&1 &
 
17
        cat open.profile | ${subdomain_parser} -r > /dev/null 2>&1 &
 
18
done &
 
19