diff options
author | 2020-11-10 23:27:01 +0100 | |
---|---|---|
committer | 2020-11-14 12:23:01 +0100 | |
commit | 3eed851a0ab597a2b1a9cf07535a96a5585fc36c (patch) | |
tree | d92546f95e957e70d40be2b15084ca86b7f563c5 | |
parent | 7ece80d8be8b244c5f77d7feb78267a4ac5753e7 (diff) | |
download | buildroot-3eed851a0ab597a2b1a9cf07535a96a5585fc36c.tar.gz buildroot-3eed851a0ab597a2b1a9cf07535a96a5585fc36c.tar.bz2 |
support/testing/test_hardening: add missing Kconfig symbol
BR2_TOOLCHAIN_EXTERNAL_CUSTOM=y is needed to use the
custom external toolchain x86-i686--glibc--bleeding-edge-2018.11-1.tar.bz2
Otherwise the symbol BR2_TOOLCHAIN_EXTERNAL_URL is lost.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/830981738
https://gitlab.com/buildroot.org/buildroot/-/jobs/830981739
https://gitlab.com/buildroot.org/buildroot/-/jobs/830981740
https://gitlab.com/buildroot.org/buildroot/-/jobs/830981741
https://gitlab.com/buildroot.org/buildroot/-/jobs/830981742
https://gitlab.com/buildroot.org/buildroot/-/jobs/830981743
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit 7b9762f4ab5bf21bdb1cf29cc833c5d4d1ec009d)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | support/testing/tests/core/test_hardening.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/testing/tests/core/test_hardening.py b/support/testing/tests/core/test_hardening.py index edfb3315db..60e14303a3 100644 --- a/support/testing/tests/core/test_hardening.py +++ b/support/testing/tests/core/test_hardening.py @@ -10,6 +10,7 @@ class TestHardeningBase(infra.basetest.BRTest): BR2_powerpc64=y BR2_powerpc_e5500=y BR2_TOOLCHAIN_EXTERNAL=y + BR2_TOOLCHAIN_EXTERNAL_CUSTOM=y BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD=y BR2_TOOLCHAIN_EXTERNAL_URL="https://toolchains.bootlin.com/downloads/releases/toolchains/powerpc64-e5500/tarballs/powerpc64-e5500--glibc--stable-2018.02-2.tar.bz2" BR2_TOOLCHAIN_EXTERNAL_GCC_6=y |