-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLinux_macOS_analysis.sh
More file actions
57 lines (43 loc) · 2.35 KB
/
Copy pathLinux_macOS_analysis.sh
File metadata and controls
57 lines (43 loc) · 2.35 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
52
53
54
55
56
57
#!/bin/bash
echo "============================================"
echo "Running hash comparison for all test modules"
echo "============================================"
echo
echo "[Boundary Test] Comparing Test Results of different Python versions..."
python tools/analysis.py blackbox_test/boundary/result_different_python_version res python
echo
echo "[Boundary Test] Comparing Test Results of different System versions..."
python tools/analysis.py blackbox_test/boundary/result_different_system_version res system
echo
echo "[ECP Test] Comparing Test Results of different Python versions..."
python tools/analysis.py blackbox_test/ecp/result_different_python_version res python
echo
echo "[ECP Test] Comparing Test Results of different System versions..."
python tools/analysis.py blackbox_test/ecp/result_different_system_version res system
echo
echo "[Fuzzing Test] Comparing Test Results of different Python versions..."
python tools/analysis.py blackbox_test/fuzzing/result_different_python_version res python
echo
echo "[Fuzzing Test] Comparing Test Results of different System versions..."
python tools/analysis.py blackbox_test/fuzzing/result_different_system_version res system
echo
echo "[State Machine Test] Comparing Test Results of different Python versions..."
python tools/analysis.py blackbox_test/state_machine/result_different_python_version res python
echo
echo "[State Machine Test] Comparing Test Results of different System versions..."
python tools/analysis.py blackbox_test/state_machine/result_different_system_version res system
echo
echo "[All-Def Test] Comparing Test Results of different Python versions..."
python tools/analysis.py whitebox_test/all_defs/result_different_python_version res python
echo
echo "[All-Def Test] Comparing Test Results of different System versions..."
python tools/analysis.py whitebox_test/all_defs/result_different_system_version res system
echo
echo "[Coverage Test] Comparing Test Results of different Python versions..."
python tools/analysis.py whitebox_test/statement_coverage_and_branch_coverage/result_different_python_version res python
echo
echo "[Coverage Test] Comparing Test Results of different System versions..."
python3 tools/analysis.py whitebox_test/statement_coverage_and_branch_coverage/result_different_system_version res system
echo
echo "All hash comparisons completed."
read -p "Press Enter to exit..."