This repository was archived by the owner on Apr 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-project.sh
More file actions
51 lines (46 loc) · 2.65 KB
/
test-project.sh
File metadata and controls
51 lines (46 loc) · 2.65 KB
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
#!/bin/bash
echo "Algo1 : Séquentiel" > test.log
echo "fichier d'environ 200Ko" >> test.log
./Algo1/FreqAnalysis-sequentiel.exe ./Fichiers-Test/fic200ko.txt 2>&1 >> test.log
echo -e "\nfichier d'environ 400Ko" >> test.log
./Algo1/FreqAnalysis-sequentiel.exe ./Fichiers-Test/fic400ko.txt 2>&1 >> test.log
echo -e "\nfichier d'environ 600Ko" >> test.log
./Algo1/FreqAnalysis-sequentiel.exe ./Fichiers-Test/fic600ko.txt 2>&1 >> test.log
echo -e "\nfichier d'environ 1Mo" >> test.log
./Algo1/FreqAnalysis-sequentiel.exe ./Fichiers-Test/fic1mo.txt 2>&1 >> test.log
echo -e "\nfichier d'environ 10Mo" >> test.log
./Algo1/FreqAnalysis-sequentiel.exe ./Fichiers-Test/fic10mo.txt 2>&1 >> test.log
echo -e "\n\nAlgo1 : pthread" >> test.log
echo "fichier d'environ 200Ko" >> test.log
./Algo1/FreqAnalysis-pthread.exe ./Fichiers-Test/fic200ko.txt 2>&1 >> test.log
echo -e "\nfichier d'environ 400Ko" >> test.log
./Algo1/FreqAnalysis-pthread.exe ./Fichiers-Test/fic400ko.txt 2>&1 >> test.log
echo -e "\nfichier d'environ 600Ko" >> test.log
./Algo1/FreqAnalysis-pthread.exe ./Fichiers-Test/fic600ko.txt 2>&1 >> test.log
echo -e "\nfichier d'environ 1Mo" >> test.log
./Algo1/FreqAnalysis-pthread.exe ./Fichiers-Test/fic1mo.txt 2>&1 >> test.log
echo -e "\nfichier d'environ 10Mo" >> test.log
./Algo1/FreqAnalysis-pthread.exe ./Fichiers-Test/fic10mo.txt 2>&1 >> test.log
echo -e "\n\nAlgo2 : Séquentiel" >> test.log
echo "fichier d'environ 200Ko" >> test.log
./Algo2/FreqAnalysis-sequentiel.exe ./Fichiers-Test/fic200ko.txt 2>&1 >> test.log
echo -e "\nfichier d'environ 400Ko" >> test.log
./Algo2/FreqAnalysis-sequentiel.exe ./Fichiers-Test/fic400ko.txt 2>&1 >> test.log
echo -e "\nfichier d'environ 600Ko" >> test.log
./Algo2/FreqAnalysis-sequentiel.exe ./Fichiers-Test/fic600ko.txt 2>&1 >> test.log
echo -e "\nfichier d'environ 1Mo" >> test.log
./Algo2/FreqAnalysis-sequentiel.exe ./Fichiers-Test/fic1mo.txt 2>&1 >> test.log
echo -e "\nfichier d'environ 10Mo" >> test.log
./Algo2/FreqAnalysis-sequentiel.exe ./Fichiers-Test/fic10mo.txt 2>&1 >> test.log
echo -e "\n\nAlgo2 : pthread" >> test.log
echo "fichier d'environ 200Ko" >> test.log
./Algo2/FreqAnalysis-pthread.exe ./Fichiers-Test/fic200ko.txt 2>&1 >> test.log
echo -e "\nfichier d'environ 400Ko" >> test.log
./Algo2/FreqAnalysis-pthread.exe ./Fichiers-Test/fic400ko.txt 2>&1 >> test.log
echo -e "\nfichier d'environ 600Ko" >> test.log
./Algo2/FreqAnalysis-pthread.exe ./Fichiers-Test/fic600ko.txt 2>&1 >> test.log
echo -e "\nfichier d'environ 1Mo" >> test.log
./Algo2/FreqAnalysis-pthread.exe ./Fichiers-Test/fic1mo.txt 2>&1 >> test.log
echo -e "\nfichier d'environ 10Mo" >> test.log
./Algo2/FreqAnalysis-pthread.exe ./Fichiers-Test/fic10mo.txt 2>&1 >> test.log
exit 0