forked from snkas/hypatia
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhypatia_run_tests.sh
More file actions
35 lines (29 loc) · 782 Bytes
/
hypatia_run_tests.sh
File metadata and controls
35 lines (29 loc) · 782 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
32
33
34
35
# Main information
echo "Hypatia: test"
echo ""
echo "It is highly recommend you use a recent Linux operating system (e.g., Ubuntu 20 or higher)."
echo "Python version 3.7+ is required."
echo ""
# satgenpy
echo "Running tests for satgenpy..."
cd satgenpy || exit 1
bash run_tests.sh || exit 1
cd .. || exit 1
# ns3-sat-sim
echo "Running tests for ns3-sat-sim..."
cd ns3-sat-sim || exit 1
bash build.sh --debug_all || exit 1
bash test.sh || exit 1
cd .. || exit 1
# satviz
echo "Nothing to test for satviz."
# Integration tests
echo "Running integration tests..."
cd integration_tests || exit 1
bash run_integration_tests.sh || exit 1
cd .. || exit 1
# paper
echo "Nothing to test for paper."
# Confirmation all tests were run
echo ""
echo "Hypatia tests were run and passed."