| Commit | Line | Data |
|---|---|---|
| 21a57608 | 1 | #!/bin/sh |
| dd1fac02 SK |
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 | # | |
| 21a57608 | 7 | cnt=0 |
| 334dfaef | 8 | while [ $cnt -lt 100000 ]; |
| 21a57608 | 9 | do |
| 334dfaef | 10 | ./t_mq_ambig |
| 194b26d9 | 11 | ./t_mq_close |
| 21a57608 | 12 | ./t_mq_open |
| ea2f98e4 | 13 | ./t_mq_open_close |
| 334dfaef | 14 | ./t_mq_open_umask |
| 194b26d9 | 15 | ./t_mq_parent_child |
| e531d5d6 | 16 | ./t_mq_parent_child_multmsg |
| 194b26d9 SK |
17 | ./t_mq_send |
| 18 | ./t_mq_setattr | |
| e21619bb | 19 | cnt=$((cnt+1)) |
| 21a57608 | 20 | done |