14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Megatest. If not, see <http://www.gnu.org/licenses/>.
if [ $NUMBER -lt 10 ];then
sleep 20
sleep `echo 4 * $NUMBER | bc`
else
sleep 130
fi
if [[ $RANDOM -lt 10000 ]];then
exit 1
else
|
|
|
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Megatest. If not, see <http://www.gnu.org/licenses/>.
if [ $NUMBER -lt 10 ];then
sleep 20
sleep `echo 4 \* $NUMBER | bc`
else
sleep 130
fi
if [[ $RANDOM -lt 10000 ]];then
exit 1
else
|