-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.sh
More file actions
executable file
·25 lines (17 loc) · 784 Bytes
/
test.sh
File metadata and controls
executable file
·25 lines (17 loc) · 784 Bytes
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
#!/bin/bash
echo "-------------------------------------------------------------"
echo " TEST FONCTIONNELS "
echo "-------------------------------------------------------------"
echo -e
./Tests/fonctionnels/test_maker.sh
echo "-------------------------------------------------------------"
echo " TEST UNITAIRES "
echo "-------------------------------------------------------------"
echo -e
gcc -ITests/unitaires/CUnit/include Tests/unitaires/test_cunit.c -LTests/unitaires/CUnit/lib -lcunit -o Tests/unitaires/test_cunit
./Tests/unitaires/test_cunit
echo -e
echo -e "Elimination Fichiers Temporaires ..."
./Tests/fonctionnels/tests/cleaner.sh
rm ./Tests/unitaires/test_cunit
make cleanall