diff options
author | 2024-03-16 09:09:46 +0000 | |
---|---|---|
committer | 2024-03-23 15:40:52 +0000 | |
commit | d7773d0cd9acc43400c09d47ef1a32581f504e61 (patch) | |
tree | b8255cc8996c51ac140d38b06c961690148571e6 /eclass | |
parent | toolchain.eclass: don't install all .sum files (diff) | |
download | gentoo-d7773d0cd9acc43400c09d47ef1a32581f504e61.tar.gz gentoo-d7773d0cd9acc43400c09d47ef1a32581f504e61.tar.bz2 gentoo-d7773d0cd9acc43400c09d47ef1a32581f504e61.zip |
toolchain.eclass: default to just running the (execute) torture tests
The (execute) torture tests are a nice subset we can run to make sure things
aren't totally hosed.
Can be overridden by setting GCC_TESTS_CHECK_TARGET=check, GCC_TESTS_RUNTESTFLAGS="".
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index d996d2d02770..dfcbd80cb283 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -122,14 +122,14 @@ tc_version_is_between() { # @DESCRIPTION: # Defaults to 'check'. Allows choosing a different test target, e.g. # 'test-gcc' (https://gcc.gnu.org/install/test.html). -: "${GCC_TESTS_CHECK_TARGET:=check}" +: "${GCC_TESTS_CHECK_TARGET:=check-gcc}" # @ECLASS_VARIABLE: GCC_TESTS_RUNTESTFLAGS # @DEFAULT_UNSET # @USER_VARIABLE # @DESCRIPTION: # Extra options to pass to DejaGnu as RUNTESTFLAGS. -: "${GCC_TESTS_RUNTESTFLAGS:=}" +: "${GCC_TESTS_RUNTESTFLAGS:=execute.exp}" # @ECLASS_VARIABLE: TOOLCHAIN_PATCH_DEV # @DEFAULT_UNSET |