-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasmTest.sh
executable file
·56 lines (54 loc) · 1.12 KB
/
asmTest.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
#!/bin/bash
echo -e "
\e[34mAuto-Test Asm:\e[39m
"
exit_status=0
if ([[ $# -eq 2 ]] && [[ $1 = "-d" ]])
then
if ([[ -d $2 ]])
then
path=$2
else
echo "unknow directory \"$2\""
exit 1
fi
else
path='champions'
fi
nb_test=$(ls $path | grep .cor | wc -l)
if ([[ $nb_test == 0 ]])
then
echo "No \".core\" here \"$2\""
exit 1
fi
for nb in $(ls $path | grep .cor)
do
tmp=$nb
tmp=$(echo $tmp | cut -f1 -d".")
tmp+=".s"
link="champions_src/"$tmp
returnCall=$(../asm/asm $link 2>&1)
if ([[ $? != 0 ]])
then
if ([[ $returnCall == "" ]])
then
echo -e "$nb : \e[31msegfault\e[39m"
exit_status=1
else
echo -e "$nb : \e[31m$returnCall\e[39m"
exit_status=1
fi
else
echo -e "$nb : \e[32mCOMPILE OK\e[39m"
diff_cor=$(diff ./$nb champions/$nb 2>&1)
if ([[ $? != 0 ]])
then
echo -e "$nb : \e[31mDIFF KO\e[39m"
exit_status=1
else
echo -e "$nb : \e[32mDIFF OK\e[39m"
fi
rm ./$nb
fi
done
exit $exit_status