-
Notifications
You must be signed in to change notification settings - Fork 0
/
exectestes.sh
executable file
·60 lines (56 loc) · 1.3 KB
/
exectestes.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/bash
# Script para rodar testes em uma determinada aplicacao
#
# Prof. Andre Leon S. Gradvohl, Dr.
# Ultima atualizacao: qui 23 mai 2019 14:53:36 -03
#
if [[ $# -ne 8 ]]; then
echo "Numero de parametros invalidos."
echo -e "Uso:\n\t $0 -p <programa> -n <#linhas> -m <#colunas> -i <quant_interacoes>"
exit 1
fi
#
# Parsing dos parametros de entrada.
#
while [[ $# -gt 0 ]]; do
key="$1"
case $key in
-p|--programa)
PROG="$2"
shift # past argument
shift # past value
;;
-n|--linhas)
N="$2"
shift # past argument
shift # past value
;;
-m|--colunas)
M="$2"
shift # past argument
shift # past value
;;
-i|--iter)
ITERACOES="$2"
shift # past argument
shift # past value
;;
*) # unknown option
echo -e "Opcao $1 invalida. Tente novamente.\n"
echo -e "Uso:\n\t $0 -p <programa> -n <#linhas> -m <#colunas> -i <quant_interacoes>"
exit 1
;;
esac
done
for ((c=0; c<${ITERACOES}; c++)); do
# Executa o programa especificado, com os respectivos parametros.
${PROG} ${N} ${M}
# Se for a ultima iteracao, sai do laco.
if [ ${c} -eq $((ITERACOES - 1)) ]; then
break
fi
# Senao, espera um tempo aleatorio (1, 2 ou 3s) antes da proxima iteracao.
sleep $((1 + RANDOM % 3))
done
exit 0