From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id E1C91385DDF3; Tue, 11 Jun 2024 12:43:46 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E1C91385DDF3 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1718109826; bh=1nxk4SxqnT/98ofVJ+TQqBANIoYfFONhpDgHRyn8kZg=; h=From:To:Subject:Date:In-Reply-To:References:From; b=odhl/eB6qbkgVMNvIwiDXVlqa7d4a7lSUvpR3nvrqSRuaBVtVkt7TICDf41hEMokS YebZ0lgsYmNDtAt5fbSI1Nyn4Rim97efQY94L+9NzIJs7Y8NeBhLReFR7S1wkjPhUT 9oC2qWV56h+VB5VczEGWkgKqUIpYXUYKcs++db5Q= From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/115433] unexpected increase of testsuite execution time Date: Tue, 11 Jun 2024 12:43:46 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 14.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D115433 --- Comment #1 from Jonathan Wakely --- What's the baseline for comparisons, the 13.x releases? We could make this change for release branches, so that C++20 and C++23 tes= ts are not also run for C++26: --- a/libstdc++-v3/testsuite/lib/libstdc++.exp +++ b/libstdc++-v3/testsuite/lib/libstdc++.exp @@ -536,10 +536,6 @@ proc v3-dg-runtest { testcases flags default-extra-fla= gs } { set min_std [v3-minimum-std $test $default_std $max_std] if { $min_std > $default_std } { set std_list $min_std - if { $min_std !=3D $max_std } { - # Also test the latest version. - lappend std_list "$max_std" - } } else { # Only run each test once with the default -std option. # This avoids increasing the run time for most testers. That could make a difference, because many of the C++20 tests are very slow= to compile (std::ranges, std::format, std::chrono::parse are all slow to compi= le). Another possible culprit is that you now have tbb-devel installed on the te= st machine, which causes the PSTL tests to be run instead of skipped. Some of those are slow too.=