beket's projects
/
pcca-tests.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Initial import of t_shmat.
[pcca-tests.git]
/
mqueue.h
/
t_mq_stress.sh
1
#!/bin/sh
2
#
3
# Given that the following tests excercise heavily the various code paths,
4
# there is a high chance that we catch a resource leak by hitting a system-wide
5
# limit.
6
#
7
cnt=0
8
while [ $cnt -lt 100000 ];
9
do
10
./t_mq_ambig
11
./t_mq_close
12
./t_mq_open
13
./t_mq_open_close
14
./t_mq_open_umask
15
./t_mq_parent_child
16
./t_mq_parent_child_multmsg
17
./t_mq_send
18
./t_mq_setattr
19
cnt=$((cnt+1))
20
done