summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Vasut <marek.vasut@gmail.com>2020-09-14 21:55:58 +0200
committerTom Rini <trini@konsulko.com>2020-09-14 16:23:12 -0400
commitb0f77532d7e35c650533cdf29dcc15d3db2b3967 (patch)
tree5b3f82b82bcf5e593920d8fe31af5a3720bda335
parent00e5fda0063eaa20e9c3f6844ac88c64eb875f23 (diff)
downloadu-boot-sh2-test.tar.gz
Azure/GitLab/Travis: Add SH4 r2dplus machine with various PCI ethernet optionssh2-test
Add SH4 R2Dplus machine configured to test various U-Boot PCI ethernet options -- RTL8139, EEPRO100, AMD PCnet, DEC Tulip. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
-rw-r--r--.azure-pipelines.yml12
-rw-r--r--.gitlab-ci.yml28
-rw-r--r--.travis.yml28
3 files changed, 68 insertions, 0 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index 1c74876cb4..473ddee383 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -253,6 +253,18 @@ jobs:
qemu_x86_64:
TEST_PY_BD: "qemu-x86_64"
TEST_PY_TEST_SPEC: "not sleep"
+ r2dplus_i82557c:
+ TEST_PY_BD: "r2dplus"
+ TEST_PY_ID: "--id i82557c_qemu"
+ r2dplus_pcnet:
+ TEST_PY_BD: "r2dplus"
+ TEST_PY_ID: "--id pcnet_qemu"
+ r2dplus_rtl8139:
+ TEST_PY_BD: "r2dplus"
+ TEST_PY_ID: "--id rtl8139_qemu"
+ r2dplus_tulip:
+ TEST_PY_BD: "r2dplus"
+ TEST_PY_ID: "--id tulip_qemu"
xilinx_zynq_virt:
TEST_PY_BD: "xilinx_zynq_virt"
TEST_PY_ID: "--id qemu"
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 08696693f1..9ac2b336a1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -359,6 +359,34 @@ qemu-x86_64 test.py:
TEST_PY_TEST_SPEC: "not sleep"
<<: *buildman_and_testpy_dfn
+r2dplus_i82557c test.py:
+ tags: [ 'all' ]
+ variables:
+ TEST_PY_BD: "r2dplus"
+ TEST_PY_ID: "--id i82557c_qemu"
+ <<: *buildman_and_testpy_dfn
+
+r2dplus_pcnet test.py:
+ tags: [ 'all' ]
+ variables:
+ TEST_PY_BD: "r2dplus"
+ TEST_PY_ID: "--id pcnet_qemu"
+ <<: *buildman_and_testpy_dfn
+
+r2dplus_rtl8139 test.py:
+ tags: [ 'all' ]
+ variables:
+ TEST_PY_BD: "r2dplus"
+ TEST_PY_ID: "--id rtl8139_qemu"
+ <<: *buildman_and_testpy_dfn
+
+r2dplus_tulip test.py:
+ tags: [ 'all' ]
+ variables:
+ TEST_PY_BD: "r2dplus"
+ TEST_PY_ID: "--id tulip_qemu"
+ <<: *buildman_and_testpy_dfn
+
xilinx_zynq_virt test.py:
tags: [ 'all' ]
variables:
diff --git a/.travis.yml b/.travis.yml
index 7e9e65f04f..fb8f73157d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -646,6 +646,34 @@ matrix:
QEMU_TARGET="x86_64-softmmu"
TOOLCHAIN="i386"
BUILD_ROM="yes"
+ - name: "test/py r2dplus_i82557c"
+ env:
+ - TEST_PY_BD="r2dplus"
+ TEST_PY_ID="--id i82557c_qemu"
+ QEMU_TARGET="sh4-softmmu"
+ BUILDMAN="sh -x arm"
+ TOOLCHAIN="sh"
+ - name: "test/py r2dplus_pcnet"
+ env:
+ - TEST_PY_BD="r2dplus"
+ TEST_PY_ID="--id pcnet_qemu"
+ QEMU_TARGET="sh4-softmmu"
+ BUILDMAN="sh -x arm"
+ TOOLCHAIN="sh"
+ - name: "test/py r2dplus_rtl8139"
+ env:
+ - TEST_PY_BD="r2dplus"
+ TEST_PY_ID="--id rtl8139_qemu"
+ QEMU_TARGET="sh4-softmmu"
+ BUILDMAN="sh -x arm"
+ TOOLCHAIN="sh"
+ - name: "test/py r2dplus_tulip"
+ env:
+ - TEST_PY_BD="r2dplus"
+ TEST_PY_ID="--id tulip_qemu"
+ QEMU_TARGET="sh4-softmmu"
+ BUILDMAN="sh -x arm"
+ TOOLCHAIN="sh"
- name: "test/py xilinx_zynq_virt"
env:
- TEST_PY_BD="xilinx_zynq_virt"