https://gcc.gnu.org/g:fab82d3eb0162186e375dcb3e846da8f6b52721b
commit r16-8072-gfab82d3eb0162186e375dcb3e846da8f6b52721b Author: Jakub Jelinek <[email protected]> Date: Fri Mar 13 09:15:11 2026 +0100 c++: Include 26 in make check-c++-all I'm not regularly using make check-c++-all (using GXX_TESTSUITE_STDS=98,11,14,17,20,23,26 instead), so this is just from curiosity. I wonder if it is a good idea to leave 26 out (whether it is intentional or not). I know impcx includes 26 plus -fimplicit-constexpr, but e.g. given r16-7990 some tests will not be tested at all for 26 in that case and others will test different behavior. 2026-03-12 Jakub Jelinek <[email protected]> * Make-lang.in (check-c++-all): Also test c++26. Reviewed-by: Jason Merrill <[email protected]> Diff: --- gcc/cp/Make-lang.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/cp/Make-lang.in b/gcc/cp/Make-lang.in index 55be730f5020..6f9053f9be92 100644 --- a/gcc/cp/Make-lang.in +++ b/gcc/cp/Make-lang.in @@ -300,7 +300,7 @@ check-c++17: # Run the testsuite in all standard conformance levels. check-c++-all: - $(MAKE) RUNTESTFLAGS="$(RUNTESTFLAGS) --stds=98,11,14,17,20,23,impcx" check-g++ + $(MAKE) RUNTESTFLAGS="$(RUNTESTFLAGS) --stds=98,11,14,17,20,23,26,impcx" check-g++ # Run the testsuite with garbage collection at every opportunity. check-g++-strict-gc:
