-
Notifications
You must be signed in to change notification settings - Fork 0
/
grademe.sh
executable file
·163 lines (149 loc) · 4.62 KB
/
grademe.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#!/bin/bash
# **************************************************************************** #
# #
# ::: :::::::: #
# grademe.sh :+: :+: :+: #
# +:+ +:+ +:+ #
# By: jtoty <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2017/01/23 18:26:01 by jtoty #+# #+# #
# Updated: 2017/02/28 11:42:36 by jtoty ### ########.fr #
# #
# **************************************************************************** #
#PATH_TEST=$(dirname $(readlink -f $0))
PATH_TEST="$(cd "$(dirname "$0")" && pwd -P)"
#exec 6>&2 2>/dev/null
exec 2> /dev/null
source ${PATH_TEST}/srcs/variables/core.sh
for arg in ${@}
do
case "${arg}" in
"--help") man ${PATH_TEST}/srcs/help.1
exit ;;
"-h") man ${PATH_TEST}/srcs/help.1
exit ;;
"-s") OPT_NO_SEARCH=1 ;;
"-m") OPT_FULL_MAKEFILE=1 ;;
"-l") OPT_NO_LIBRARY=1 ;;
"-c") OPT_NO_COLOR=1 ;;
"-f") OPT_NO_FORBIDDEN=1 ;;
"-n") OPT_NO_NORMINETTE=1 ;;
"-u") OPT_NO_UPDATE=1 ;;
"-op1") OPT_NO_PART2=1
OPT_NO_BONUS=1
OPT_NO_ADDITIONAL=1
CHECK_IN_PART1=0
CHECK_IN_PART2=0
CHECK_IN_BONUS=0
CHECK_IN_ADDITIONAL=0 ;;
"-op2") OPT_NO_PART1=1
OPT_NO_BONUS=1
OPT_NO_ADDITIONAL=1
CHECK_IN_PART2=0
CHECK_IN_PART1=0
CHECK_IN_BONUS=0
CHECK_IN_ADDITIONAL=0 ;;
"-ob") OPT_NO_PART1=1
OPT_NO_PART2=1
OPT_NO_ADDITIONAL=1
CHECK_IN_BONUS=0
CHECK_IN_PART2=0
CHECK_IN_PART1=0
CHECK_IN_ADDITIONAL=0 ;;
"-oa") OPT_NO_PART1=1
OPT_NO_PART2=1
OPT_NO_BONUS=1
CHECK_IN_ADDITIONAL=0
CHECK_IN_BONUS=0
CHECK_IN_PART2=0
CHECK_IN_PART1=0 ;;
"-p1") OPT_NO_PART1=1
CHECK_IN_PART1=0 ;;
"-p2") OPT_NO_PART2=1
CHECK_IN_PART2=0 ;;
"-b") OPT_NO_BONUS=1
CHECK_IN_BONUS=0 ;;
"-a") OPT_NO_ADDITIONAL=1
CHECK_IN_ADDITIONAL=0 ;;
*ft_*) for part in ${tab_all_part[*]}
do
check_part=$(echo CHECK_IN_${part} | tr '[:lower:]' '[:upper:]' | rev | cut -c 6- | rev)
if [ ${!check_part} -eq 1 ]
then
#opt_part=$(echo OPT_NO_${part} | tr '[:lower:]' '[:upper:]' | rev | cut -c 6- | rev)
p=0
activate_part=$(echo ACTIVATE_${part} | tr '[:lower:]' '[:upper:]' | rev | cut -c 6- | rev)
tab_part=$(echo ${part}[*])
nb_func=$(echo ${!tab_part} | wc -w)
while (( p < ${nb_func} ))
do
func_name=$(echo ${part}[$p])
if [ "$(echo ${arg} | grep -ow $(echo ${!func_name} | cut -d . -f 1))" != "" ]
then
(( ${part}_activation[$p]=1 ))
#(( ${opt_part}=1 ))
#####################
OPT_NO_PART1=1
OPT_NO_PART2=1
OPT_NO_BONUS=1
OPT_NO_ADDITIONAL=1
#############################
(( ${activate_part}=1 ))
break
fi
(( p += 1 ))
done
fi
done ;;
esac
done
source ${PATH_TEST}/srcs/variables/colors.sh
source ${PATH_TEST}/srcs/check_forbidden_function.sh
source ${PATH_TEST}/srcs/check_compilation.sh
source ${PATH_TEST}/srcs/check_file.sh
source ${PATH_TEST}/srcs/check_norme.sh
source ${PATH_TEST}/srcs/compil_lib.sh
source ${PATH_TEST}/srcs/diff_test.sh
source ${PATH_TEST}/srcs/test_function.sh
source ${PATH_TEST}/srcs/check_update.sh
source ${PATH_TEST}/srcs/activation.sh
source ${PATH_TEST}/srcs/print.sh
source ${PATH_TEST}/srcs/utils.sh
cd ${PATH_TEST}
if [ ${OPT_NO_UPDATE} -eq 0 ]
then
func_check_update
fi
check_my_config_file
source ${PATH_TEST}/my_config.sh
copying_files
clear
init_deepthought
set_makefile_var
if [ ${OPT_NO_SEARCH} -eq 0 ]
then
func_check_file
fi
if [ ${OPT_NO_LIBRARY} -eq 0 ]
then
func_compil_lib
fi
if [ -e ${PATH_LIBFT}/libft.a ]
then
LIB_CONTENT=$(nm -g ${PATH_LIBFT}/libft.a)
activate_functions
activate_part
print_starting_test
if [ -e ${PATH_LIBFT}/libft.h ]
then
cp ${PATH_LIBFT}/libft.h ${PATH_TEST}
fi
printf "#include \"libft.h\"\n\nint\tmain(void)\n{\n\treturn (0);\n}" > ${PATH_TEST}/main_check_forbidden_function.c
launch_tests
print_footer
else
print_header "STARTING TESTS"
printf "\n${RED}Tests can't be started. Missing ${BOLD}${PURPLE}libft.a${DEFAULT}${RED} file${DEFAULT}\n\n"
rm_files
fi
print_deepthought_message_and_clean