blob: d06cca45fd042cac27ca7ccf81962f29842ce573 [file] [log] [blame]
Tom Rini1a62a722019-06-19 09:25:17 -04001# SPDX-License-Identifier: GPL-2.0+
2
3# Grab our configured image. The source for this is found at:
Heinrich Schuchardta3bbd0b2021-02-24 13:19:04 +01004# https://source.denx.de/u-boot/gitlab-ci-runner
Tom Rini99cffa22021-11-13 18:37:00 -05005image: trini/u-boot-gitlab-ci-runner:focal-20211006-14Nov2021
Tom Rini1a62a722019-06-19 09:25:17 -04006
7# We run some tests in different order, to catch some failures quicker.
8stages:
Tom Rini1a62a722019-06-19 09:25:17 -04009 - testsuites
Tom Rinib29cb052019-07-24 13:09:31 -040010 - test.py
Tom Rini1a62a722019-06-19 09:25:17 -040011 - world build
12
13.buildman_and_testpy_template: &buildman_and_testpy_dfn
Tom Rini1a62a722019-06-19 09:25:17 -040014 stage: test.py
15 before_script:
16 # Clone uboot-test-hooks
Tom Rini85ae52b2021-02-24 17:05:04 -050017 - git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
Tom Rini1a62a722019-06-19 09:25:17 -040018 - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
19 - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
Tom Rini28a51232019-10-04 12:12:54 -040020 - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
21 - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
Bin Meng49fb28a2020-03-28 07:25:29 -070022 - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
Heinrich Schuchardtb6b35fd2021-04-02 11:42:01 +020023 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
24 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
Bin Meng49fb28a2020-03-28 07:25:29 -070025 fi
Bin Meng0e60b3a2021-08-26 23:33:35 +080026 - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
Heinrich Schuchardtb6b35fd2021-04-02 11:42:01 +020027 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
28 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
Bin Meng49fb28a2020-03-28 07:25:29 -070029 fi
Tom Rinib29cb052019-07-24 13:09:31 -040030
Tom Rini1a62a722019-06-19 09:25:17 -040031 after_script:
Heinrich Schuchardt24df1b12019-12-19 13:30:32 +010032 - rm -rf /tmp/uboot-test-hooks /tmp/venv
Tom Rini1a62a722019-06-19 09:25:17 -040033 script:
Simon Glassdd5c9542020-03-18 09:42:57 -060034 # If we've been asked to use clang only do one configuration.
Simon Glass4e32fed2020-03-18 09:42:55 -060035 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD}
Simon Glass7ec12552020-03-18 09:43:00 -060036 - tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e
37 --board ${TEST_PY_BD} ${OVERRIDE}
Heinrich Schuchardt82560ae2020-07-14 00:23:58 +020038 - cp ~/grub_x86.efi $UBOOT_TRAVIS_BUILD_DIR/
39 - cp ~/grub_x64.efi $UBOOT_TRAVIS_BUILD_DIR/
40 - cp /opt/grub/grubriscv64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_riscv64.efi
Heinrich Schuchardt82560ae2020-07-14 00:23:58 +020041 - cp /opt/grub/grubaa64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm64.efi
42 - cp /opt/grub/grubarm.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm.efi
Bin Meng0e60b3a2021-08-26 23:33:35 +080043 # create sdcard / spi-nor images for sifive unleashed using genimage
44 - if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
45 mkdir -p root;
46 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
47 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
48 rm -rf tmp;
49 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
50 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
51 rm -rf tmp;
52 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
53 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
54 fi
Tom Rini085b8972019-10-24 11:59:27 -040055 - virtualenv -p /usr/bin/python3 /tmp/venv
56 - . /tmp/venv/bin/activate
57 - pip install -r test/py/requirements.txt
Simon Glass4080d092020-03-18 09:42:56 -060058 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
Simon Glass4e32fed2020-03-18 09:42:55 -060059 - export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
Tom Rini1a62a722019-06-19 09:25:17 -040060 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
Heinrich Schuchardtf3092472020-07-10 22:04:40 +020061 ./test/py/test.py -ra --bd ${TEST_PY_BD} ${TEST_PY_ID}
Simon Glass4080d092020-03-18 09:42:56 -060062 ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"}
Simon Glasscec1e852020-03-18 09:42:59 -060063 --build-dir "$UBOOT_TRAVIS_BUILD_DIR"
Tom Rini1a62a722019-06-19 09:25:17 -040064
Heinrich Schuchardta11cb572019-10-06 12:26:16 +020065build all 32bit ARM platforms:
Tom Rini1a62a722019-06-19 09:25:17 -040066 stage: world build
67 script:
68 - ret=0;
Simon Glassdd5c9542020-03-18 09:42:57 -060069 ./tools/buildman/buildman -o /tmp -P -E -W arm -x aarch64 || ret=$?;
70 if [[ $ret -ne 0 ]]; then
Simon Glassb52f5a12020-03-18 09:42:53 -060071 ./tools/buildman/buildman -o /tmp -seP;
Tom Rini4c749972019-10-24 11:59:16 -040072 exit $ret;
73 fi;
Tom Rini9f7bda12019-07-17 17:51:28 -040074
Heinrich Schuchardta11cb572019-10-06 12:26:16 +020075build all 64bit ARM platforms:
Tom Rini9f7bda12019-07-17 17:51:28 -040076 stage: world build
77 script:
Tom Rini26a426a2020-02-11 12:41:14 -050078 - virtualenv -p /usr/bin/python3 /tmp/venv
Tom Rinif0db8392019-07-18 07:28:36 -040079 - . /tmp/venv/bin/activate
80 - pip install pyelftools
Tom Rini9f7bda12019-07-17 17:51:28 -040081 - ret=0;
Simon Glassdd5c9542020-03-18 09:42:57 -060082 ./tools/buildman/buildman -o /tmp -P -E -W aarch64 || ret=$?;
83 if [[ $ret -ne 0 ]]; then
Simon Glassb52f5a12020-03-18 09:42:53 -060084 ./tools/buildman/buildman -o /tmp -seP;
Tom Rini4c749972019-10-24 11:59:16 -040085 exit $ret;
86 fi;
Tom Rini9f7bda12019-07-17 17:51:28 -040087
Heinrich Schuchardta11cb572019-10-06 12:26:16 +020088build all PowerPC platforms:
Tom Rini9f7bda12019-07-17 17:51:28 -040089 stage: world build
90 script:
91 - ret=0;
Simon Glassdd5c9542020-03-18 09:42:57 -060092 ./tools/buildman/buildman -o /tmp -P -E -W powerpc || ret=$?;
93 if [[ $ret -ne 0 ]]; then
Simon Glassb52f5a12020-03-18 09:42:53 -060094 ./tools/buildman/buildman -o /tmp -seP;
Tom Rini4c749972019-10-24 11:59:16 -040095 exit $ret;
96 fi;
Tom Rini9f7bda12019-07-17 17:51:28 -040097
Heinrich Schuchardta11cb572019-10-06 12:26:16 +020098build all other platforms:
Tom Rini9f7bda12019-07-17 17:51:28 -040099 stage: world build
100 script:
101 - ret=0;
Simon Glassdd5c9542020-03-18 09:42:57 -0600102 ./tools/buildman/buildman -o /tmp -P -E -W -x arm,powerpc || ret=$?;
103 if [[ $ret -ne 0 ]]; then
Simon Glassb52f5a12020-03-18 09:42:53 -0600104 ./tools/buildman/buildman -o /tmp -seP;
Tom Rini4c749972019-10-24 11:59:16 -0400105 exit $ret;
106 fi;
Tom Rini1a62a722019-06-19 09:25:17 -0400107
Tom Rinic1a7de52021-12-14 13:36:41 -0500108check for migrated symbols in board header:
109 stage: testsuites
110 script:
111 - KSYMLST=`mktemp`;
112 KUSEDLST=`mktemp`;
113 cat `find . -name "Kconfig*"` |
114 sed -n -e 's/^\s*config *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p'
115 -e 's/^\s*menuconfig *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p'
116 | sort -u > $KSYMLST;
117 for CFG in `find include/configs -name "*.h"`; do
118 grep '#define[[:blank:]]CONFIG_' $CFG |
119 sed -n 's/#define.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p' |
120 sort -u > ${KUSEDLST} || true;
121 NUM=`comm -12 --total --output-delimiter=, ${KSYMLST} ${KUSEDLST} |
122 cut -d , -f 3`;
123 if [[ $NUM -ne 0 ]]; then
124 echo "Unmigrated symbols found in $CFG";
125 exit 1;
126 fi;
127 done
128
Tom Rini1a62a722019-06-19 09:25:17 -0400129# QA jobs for code analytics
130# static code analysis with cppcheck (we can add --enable=all later)
131cppcheck:
Tom Rini1a62a722019-06-19 09:25:17 -0400132 stage: testsuites
133 script:
Simon Glass4ee7f522020-04-05 14:35:43 -0600134 - cppcheck -j$(nproc) --force --quiet --inline-suppr .
Tom Rini1a62a722019-06-19 09:25:17 -0400135
136# search for TODO within source tree
137grep TODO/FIXME/HACK:
Tom Rini1a62a722019-06-19 09:25:17 -0400138 stage: testsuites
139 script:
140 - grep -r TODO .
141 - grep -r FIXME .
142 # search for HACK within source tree and ignore HACKKIT board
143 - grep -r HACK . | grep -v HACKKIT
144
Heinrich Schuchardt3eb7b782020-02-21 18:24:01 +0100145# build HTML documentation
146htmldocs:
Heinrich Schuchardt3eb7b782020-02-21 18:24:01 +0100147 stage: testsuites
148 script:
Heinrich Schuchardt836049d2021-01-25 22:06:25 +0100149 - virtualenv -p /usr/bin/python3 /tmp/venvhtml
150 - . /tmp/venvhtml/bin/activate
151 - pip install -r doc/sphinx/requirements.txt
Heinrich Schuchardt3eb7b782020-02-21 18:24:01 +0100152 - make htmldocs
153
Tom Rini1a62a722019-06-19 09:25:17 -0400154# some statistics about the code base
155sloccount:
Tom Rini1a62a722019-06-19 09:25:17 -0400156 stage: testsuites
157 script:
158 - sloccount .
159
160# ensure all configs have MAINTAINERS entries
161Check for configs without MAINTAINERS entry:
Tom Rini1a62a722019-06-19 09:25:17 -0400162 stage: testsuites
163 script:
164 - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
165
166# Ensure host tools build
167Build tools-only:
Tom Rini1a62a722019-06-19 09:25:17 -0400168 stage: testsuites
169 script:
170 - make tools-only_config tools-only -j$(nproc)
171
Pierre-Jean Texier1f3910d2019-08-26 13:06:18 +0200172# Ensure env tools build
173Build envtools:
Pierre-Jean Texier1f3910d2019-08-26 13:06:18 +0200174 stage: testsuites
175 script:
176 - make tools-only_config envtools -j$(nproc)
177
Tom Rini72618332020-03-11 18:11:15 -0400178Run binman, buildman, dtoc, Kconfig and patman testsuites:
Tom Rini1a62a722019-06-19 09:25:17 -0400179 stage: testsuites
180 script:
Tom Rinid7ae9322019-08-12 10:09:08 -0400181 - git config --global user.name "GitLab CI Runner";
182 git config --global user.email trini@konsulko.com;
183 export USER=gitlab;
Tom Rini26a426a2020-02-11 12:41:14 -0500184 virtualenv -p /usr/bin/python3 /tmp/venv;
Tom Rinid7ae9322019-08-12 10:09:08 -0400185 . /tmp/venv/bin/activate;
Tom Rini38229b52021-02-26 07:52:29 -0500186 pip install -r test/py/requirements.txt;
Simon Glassbf0a8132020-03-18 09:42:50 -0600187 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl;
Tom Rinid7ae9322019-08-12 10:09:08 -0400188 export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
189 export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
Simon Glass6c914e42021-03-15 17:25:34 +1300190 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w
191 --board sandbox_spl;
Tom Rinid7ae9322019-08-12 10:09:08 -0400192 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test;
193 ./tools/buildman/buildman -t;
194 ./tools/dtoc/dtoc -t;
Simon Glass6bb74de2020-07-05 21:41:55 -0600195 ./tools/patman/patman test;
Tom Rini72618332020-03-11 18:11:15 -0400196 make testconfig
Tom Rini1a62a722019-06-19 09:25:17 -0400197
Pali Rohár6cfd09d2020-05-17 14:38:22 +0200198Run tests for Nokia RX-51 (aka N900):
Pali Rohár6cfd09d2020-05-17 14:38:22 +0200199 stage: testsuites
200 script:
Tom Rinie2d6a772021-10-14 22:21:29 -0400201 - export PATH=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin:$PATH;
Pali Rohár6cfd09d2020-05-17 14:38:22 +0200202 test/nokia_rx51_test.sh
203
Tom Rini1a62a722019-06-19 09:25:17 -0400204# Test sandbox with test.py
205sandbox test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400206 variables:
207 TEST_PY_BD: "sandbox"
Tom Rini1a62a722019-06-19 09:25:17 -0400208 <<: *buildman_and_testpy_dfn
209
Tom Rini0219d012019-11-06 19:30:47 -0500210sandbox with clang test.py:
Tom Rini0219d012019-11-06 19:30:47 -0500211 variables:
212 TEST_PY_BD: "sandbox"
Tom Rini927e0ee2021-10-05 13:51:38 -0400213 OVERRIDE: "-O clang-13"
Tom Rini0219d012019-11-06 19:30:47 -0500214 <<: *buildman_and_testpy_dfn
215
Tom Rini1a62a722019-06-19 09:25:17 -0400216sandbox_spl test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400217 variables:
218 TEST_PY_BD: "sandbox_spl"
Simon Glassafb26ba2020-10-25 20:38:36 -0600219 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Tom Rini1a62a722019-06-19 09:25:17 -0400220 <<: *buildman_and_testpy_dfn
221
Simon Glass6c914e42021-03-15 17:25:34 +1300222sandbox_noinst_test.py:
Simon Glass6c914e42021-03-15 17:25:34 +1300223 variables:
224 TEST_PY_BD: "sandbox_noinst"
225 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
226 <<: *buildman_and_testpy_dfn
227
Tom Rini699c0b92019-07-17 16:06:57 -0400228evb-ast2500 test.py:
Tom Rini699c0b92019-07-17 16:06:57 -0400229 variables:
230 TEST_PY_BD: "evb-ast2500"
231 TEST_PY_ID: "--id qemu"
Tom Rini699c0b92019-07-17 16:06:57 -0400232 <<: *buildman_and_testpy_dfn
233
Tom Rini1a62a722019-06-19 09:25:17 -0400234sandbox_flattree test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400235 variables:
236 TEST_PY_BD: "sandbox_flattree"
Tom Rini1a62a722019-06-19 09:25:17 -0400237 <<: *buildman_and_testpy_dfn
238
Kristian Amlie15e30102021-09-07 08:37:51 +0200239vexpress_ca9x4 test.py:
240 variables:
241 TEST_PY_BD: "vexpress_ca9x4"
242 TEST_PY_ID: "--id qemu"
243 <<: *buildman_and_testpy_dfn
244
Tom Rini1a62a722019-06-19 09:25:17 -0400245integratorcp_cm926ejs test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400246 variables:
247 TEST_PY_BD: "integratorcp_cm926ejs"
248 TEST_PY_TEST_SPEC: "not sleep"
249 TEST_PY_ID: "--id qemu"
Tom Rini1a62a722019-06-19 09:25:17 -0400250 <<: *buildman_and_testpy_dfn
251
252qemu_arm test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400253 variables:
254 TEST_PY_BD: "qemu_arm"
255 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400256 <<: *buildman_and_testpy_dfn
257
258qemu_arm64 test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400259 variables:
260 TEST_PY_BD: "qemu_arm64"
261 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400262 <<: *buildman_and_testpy_dfn
263
Daniel Schwierzeckd8533162020-06-06 22:21:47 +0200264qemu_malta test.py:
Daniel Schwierzeckd8533162020-06-06 22:21:47 +0200265 variables:
266 TEST_PY_BD: "malta"
267 TEST_PY_TEST_SPEC: "not sleep and not efi"
268 TEST_PY_ID: "--id qemu"
269 <<: *buildman_and_testpy_dfn
270
271qemu_maltael test.py:
Daniel Schwierzeckd8533162020-06-06 22:21:47 +0200272 variables:
273 TEST_PY_BD: "maltael"
274 TEST_PY_TEST_SPEC: "not sleep and not efi"
275 TEST_PY_ID: "--id qemu"
276 <<: *buildman_and_testpy_dfn
277
278qemu_malta64 test.py:
Daniel Schwierzeckd8533162020-06-06 22:21:47 +0200279 variables:
280 TEST_PY_BD: "malta64"
281 TEST_PY_TEST_SPEC: "not sleep and not efi"
282 TEST_PY_ID: "--id qemu"
283 <<: *buildman_and_testpy_dfn
284
285qemu_malta64el test.py:
Daniel Schwierzeckd8533162020-06-06 22:21:47 +0200286 variables:
287 TEST_PY_BD: "malta64el"
288 TEST_PY_TEST_SPEC: "not sleep and not efi"
289 TEST_PY_ID: "--id qemu"
290 <<: *buildman_and_testpy_dfn
291
Tom Rini1a62a722019-06-19 09:25:17 -0400292qemu-ppce500 test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400293 variables:
294 TEST_PY_BD: "qemu-ppce500"
295 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400296 <<: *buildman_and_testpy_dfn
297
Bin Menga379d332020-03-28 07:25:27 -0700298qemu-riscv32 test.py:
Bin Menga379d332020-03-28 07:25:27 -0700299 variables:
300 TEST_PY_BD: "qemu-riscv32"
301 TEST_PY_TEST_SPEC: "not sleep"
Bin Menga379d332020-03-28 07:25:27 -0700302 <<: *buildman_and_testpy_dfn
303
Tom Rini7298d822019-08-02 11:32:37 -0400304qemu-riscv64 test.py:
Tom Rini7298d822019-08-02 11:32:37 -0400305 variables:
306 TEST_PY_BD: "qemu-riscv64"
307 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini7298d822019-08-02 11:32:37 -0400308 <<: *buildman_and_testpy_dfn
309
Bin Meng49fb28a2020-03-28 07:25:29 -0700310qemu-riscv32_spl test.py:
Bin Meng49fb28a2020-03-28 07:25:29 -0700311 variables:
312 TEST_PY_BD: "qemu-riscv32_spl"
313 TEST_PY_TEST_SPEC: "not sleep"
Bin Meng49fb28a2020-03-28 07:25:29 -0700314 <<: *buildman_and_testpy_dfn
315
316qemu-riscv64_spl test.py:
Bin Meng49fb28a2020-03-28 07:25:29 -0700317 variables:
318 TEST_PY_BD: "qemu-riscv64_spl"
319 TEST_PY_TEST_SPEC: "not sleep"
Bin Meng49fb28a2020-03-28 07:25:29 -0700320 <<: *buildman_and_testpy_dfn
321
Tom Rini1a62a722019-06-19 09:25:17 -0400322qemu-x86 test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400323 variables:
324 TEST_PY_BD: "qemu-x86"
325 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400326 <<: *buildman_and_testpy_dfn
327
328qemu-x86_64 test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400329 variables:
330 TEST_PY_BD: "qemu-x86_64"
331 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400332 <<: *buildman_and_testpy_dfn
333
Marek Vasut0e125752020-09-14 21:55:58 +0200334r2dplus_i82557c test.py:
Marek Vasut0e125752020-09-14 21:55:58 +0200335 variables:
336 TEST_PY_BD: "r2dplus"
337 TEST_PY_ID: "--id i82557c_qemu"
338 <<: *buildman_and_testpy_dfn
339
340r2dplus_pcnet test.py:
Marek Vasut0e125752020-09-14 21:55:58 +0200341 variables:
342 TEST_PY_BD: "r2dplus"
343 TEST_PY_ID: "--id pcnet_qemu"
344 <<: *buildman_and_testpy_dfn
345
346r2dplus_rtl8139 test.py:
Marek Vasut0e125752020-09-14 21:55:58 +0200347 variables:
348 TEST_PY_BD: "r2dplus"
349 TEST_PY_ID: "--id rtl8139_qemu"
350 <<: *buildman_and_testpy_dfn
351
352r2dplus_tulip test.py:
Marek Vasut0e125752020-09-14 21:55:58 +0200353 variables:
354 TEST_PY_BD: "r2dplus"
355 TEST_PY_ID: "--id tulip_qemu"
356 <<: *buildman_and_testpy_dfn
357
Bin Meng0e60b3a2021-08-26 23:33:35 +0800358sifive_unleashed_sdcard test.py:
359 variables:
360 TEST_PY_BD: "sifive_unleashed"
361 TEST_PY_ID: "--id sdcard_qemu"
362 <<: *buildman_and_testpy_dfn
363
364sifive_unleashed_spi-nor test.py:
365 variables:
366 TEST_PY_BD: "sifive_unleashed"
367 TEST_PY_ID: "--id spi-nor_qemu"
368 <<: *buildman_and_testpy_dfn
369
Michal Simekf7c6ee72020-02-13 15:03:29 +0100370xilinx_zynq_virt test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400371 variables:
Michal Simekf7c6ee72020-02-13 15:03:29 +0100372 TEST_PY_BD: "xilinx_zynq_virt"
Tom Rini1a62a722019-06-19 09:25:17 -0400373 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400374 TEST_PY_ID: "--id qemu"
Tom Rini1a62a722019-06-19 09:25:17 -0400375 <<: *buildman_and_testpy_dfn
376
377xilinx_versal_virt test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400378 variables:
379 TEST_PY_BD: "xilinx_versal_virt"
380 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400381 TEST_PY_ID: "--id qemu"
Tom Rini1a62a722019-06-19 09:25:17 -0400382 <<: *buildman_and_testpy_dfn
383
384xtfpga test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400385 variables:
386 TEST_PY_BD: "xtfpga"
387 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400388 TEST_PY_ID: "--id qemu"
Tom Rini1a62a722019-06-19 09:25:17 -0400389 <<: *buildman_and_testpy_dfn