-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdriver.sh
More file actions
executable file
·32 lines (30 loc) · 856 Bytes
/
driver.sh
File metadata and controls
executable file
·32 lines (30 loc) · 856 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
26
27
28
29
30
31
#!/bin/bash
counter=0
#This Script Drives the Entire Project
python InputModule.py
while [ $counter -lt 5 ]
do
echo "---- Running Run Number --- $counter"
#Run Runner Module
echo "Running module for Application under Test"
./Analyzermodulenew.sh inputrandom.txt
echo "Running module for Oracle"
./AnalyzerModuleOracleNew.sh inputrandom.txt
echo "Finished The Runner Module"
echo "Starting the Analysis module"
python FileEdit.py
echo "Finished File Edit"
python CoverageStat.py
echo "Finished creating coverage Files"
python SeminalBehaviour.py
echo "Finished Creating the Seminal behaviour files"
python Analysis.py
echo "Finished Analysis"
python Visualization.py
echo "Finished creating the graph"
python Evaluation.py $counter
echo "Moved Files"
#python BlkTimeGenerator.py $counter
#echo "Created Blk Time Output Files"
counter=$((counter+1))
done