-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathingen_test_package_installer.sh
executable file
·177 lines (122 loc) · 4.91 KB
/
ingen_test_package_installer.sh
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
#!/bin/bash
# NOTE: ensure that this script is executed in a new, fresh shell!
# usage : bash ingen_test_package_installer.sh </path/to/package/installer> </temp/dir/for/installation> </path/to/sanity/tests>
SYMBIFLOW_PACKAGE_INSTALLER=$1
SYMBIFLOW_PACKAGE_INSTALL_DIR=$2
SYMBIFLOW_PACKAGE_TESTS_DIR=$3
TEST_STATUS=
##########################################################################################
# function : clean up the installation
##########################################################################################
function cleanup_with_exit_code() {
exit_code=$1
# clean the test installation directory
rm -rf "$INSTALL_DIR"
exit $((exit_code))
}
##########################################################################################
##########################################################################################
# STEP 1 : install and configure the Quicklogic Symbiflow Package using the installer
##########################################################################################
echo ""
echo "[>> INGEN <<] install package:"
echo " $SYMBIFLOW_PACKAGE_INSTALLER"
echo " into dir:"
echo " $SYMBIFLOW_PACKAGE_INSTALL_DIR"
echo ""
# set install location
export INSTALL_DIR="$SYMBIFLOW_PACKAGE_INSTALL_DIR"
# install using self extracting installer
chmod +x "${SYMBIFLOW_PACKAGE_INSTALLER}"
"${SYMBIFLOW_PACKAGE_INSTALLER}"
# configure the symbiflow package installation
cd "${INSTALL_DIR}"
source setup.sh
cd - > /dev/null
##########################################################################################
##########################################################################################
# STEP 2a : test the Quicklogic Symbiflow Package for k6n10
##########################################################################################
echo ""
echo "[>> INGEN <<] test installation for: qlf_k6n10 ..."
echo ""
cd "$SYMBIFLOW_PACKAGE_TESTS_DIR/counter_16bit"
ql_symbiflow -compile -src $PWD -d qlf_k6n10 -t top -v counter_16bit.v
TEST_STATUS=$?
rm -rf build/ Makefile.symbiflow
if [ ! $TEST_STATUS == 0 ] ; then
echo ""
echo "[>> INGEN <<] test installation for: qlf_k6n10 [FAILED!] "
echo ""
cleanup_with_exit_code 1
fi
echo ""
echo "[>> INGEN <<] test installation for: qlf_k6n10 [OK]"
echo ""
cd - > /dev/null
##########################################################################################
##########################################################################################
# STEP 2b : test the Quicklogic Symbiflow Package for k4n8
##########################################################################################
echo ""
echo "[>> INGEN <<] test installation for: qlf_k4n8 ..."
echo ""
cd "$SYMBIFLOW_PACKAGE_TESTS_DIR/counter_16bit"
ql_symbiflow -compile -src $PWD -d qlf_k4n8 -t top -v counter_16bit.v
TEST_STATUS=$?
rm -rf build/ Makefile.symbiflow
if [ ! $TEST_STATUS == 0 ] ; then
echo ""
echo "[>> INGEN <<] test installation for: qlf_k4n8 [FAILED!] "
echo ""
cleanup_with_exit_code 1
fi
echo ""
echo "[>> INGEN <<] test installation for: qlf_k4n8 [OK]"
echo ""
cd - > /dev/null
##########################################################################################
##########################################################################################
# STEP 2c : test the Quicklogic Symbiflow Package for ql-eos-s3
##########################################################################################
echo ""
echo "[>> INGEN <<] test installation for: ql-eos-s3 ..."
echo ""
cd "$SYMBIFLOW_PACKAGE_TESTS_DIR/counter_16bit"
ql_symbiflow -compile -src $PWD -d ql-eos-s3 -P PD64 -t top -v counter_16bit.v -p counter_16bit_chandalar.pcf -dump binary header jlink openocd
TEST_STATUS=$?
rm -rf build/ Makefile.symbiflow
if [ ! $TEST_STATUS == 0 ] ; then
echo ""
echo "[>> INGEN <<] test installation for: ql-eos-s3 [FAILED!] "
echo ""
cleanup_with_exit_code 1
fi
echo ""
echo "[>> INGEN <<] test installation for: ql-eos-s3 [OK]"
echo ""
cd - > /dev/null
##########################################################################################
##########################################################################################
# STEP 2d : test the Quicklogic Symbiflow Package for pp3
##########################################################################################
echo ""
echo "[>> INGEN <<] test installation for: pp3 ..."
echo ""
cd "$SYMBIFLOW_PACKAGE_TESTS_DIR/counter_8bit"
ql_symbiflow -compile -d ql-pp3 -v cnt8.v -t top -P WD30 -p WD30.pcf
TEST_STATUS=$?
rm -rf build/ Makefile.symbiflow
if [ ! $TEST_STATUS == 0 ] ; then
echo ""
echo "[>> INGEN <<] test installation for: pp3 [FAILED!] "
echo ""
cleanup_with_exit_code 1
fi
echo ""
echo "[>> INGEN <<] test installation for: pp3 [OK] "
echo ""
cd - > /dev/null
##########################################################################################
# All OK.
cleanup_with_exit_code 0