From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by sourceware.org (Postfix) with ESMTP id 0AA7B3857C59 for ; Wed, 10 Mar 2021 11:17:36 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 0AA7B3857C59 Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-321-WZ58W36jPPKMref1U3PjTQ-1; Wed, 10 Mar 2021 06:17:34 -0500 X-MC-Unique: WZ58W36jPPKMref1U3PjTQ-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 5347218397E0; Wed, 10 Mar 2021 11:17:33 +0000 (UTC) Received: from localhost (unknown [10.33.37.30]) by smtp.corp.redhat.com (Postfix) with ESMTP id ED57862463; Wed, 10 Mar 2021 11:17:32 +0000 (UTC) Date: Wed, 10 Mar 2021 11:17:32 +0000 From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: [committed] libstdc++: Uncomment more parts of synopsis test Message-ID: MIME-Version: 1.0 X-Clacks-Overhead: GNU Terry Pratchett X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: multipart/mixed; boundary="W/EfVmyv/70YQOaL" Content-Disposition: inline X-Spam-Status: No, score=-14.3 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Mar 2021 11:17:38 -0000 --W/EfVmyv/70YQOaL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline libstdc++-v3/ChangeLog: * testsuite/std/time/syn_c++20.cc: Enable synopsis checks for C++20 calendar types. Tested x86_64-linux. Committed to trunk. --W/EfVmyv/70YQOaL Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch.txt" commit e7afb82c358855510aa90ae9869663b614a732cb Author: Jonathan Wakely Date: Wed Mar 10 11:14:17 2021 libstdc++: Uncomment more parts of synopsis test libstdc++-v3/ChangeLog: * testsuite/std/time/syn_c++20.cc: Enable synopsis checks for C++20 calendar types. diff --git a/libstdc++-v3/testsuite/std/time/syn_c++20.cc b/libstdc++-v3/testsuite/std/time/syn_c++20.cc index f0ca1d43da6..6ba181dcaf2 100644 --- a/libstdc++-v3/testsuite/std/time/syn_c++20.cc +++ b/libstdc++-v3/testsuite/std/time/syn_c++20.cc @@ -75,6 +75,7 @@ namespace __gnu_test using std::chrono::clock_cast; using std::chrono::last_spec; +#endif using std::chrono::day; using std::chrono::month; @@ -100,6 +101,8 @@ namespace __gnu_test using std::chrono::make12; using std::chrono::make24; + // FIXME +#if 0 using std::chrono::tzdb; using std::chrono::tzdb_list; using std::chrono::get_tzdb; @@ -130,6 +133,7 @@ namespace __gnu_test using std::chrono::local_time_format; using std::chrono::parse; +#endif using std::chrono::last; using std::chrono::Sunday; @@ -155,7 +159,6 @@ namespace __gnu_test using std::chrono_literals::operator""d; using std::chrono_literals::operator""y; -#endif template constexpr bool is_duration = false; --W/EfVmyv/70YQOaL--