From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x430.google.com (mail-wr1-x430.google.com [IPv6:2a00:1450:4864:20::430]) by sourceware.org (Postfix) with ESMTPS id 9C8AD3846078; Fri, 15 Jan 2021 10:09:58 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 9C8AD3846078 Received: by mail-wr1-x430.google.com with SMTP id d13so8638145wrc.13; Fri, 15 Jan 2021 02:09:58 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=GYlN0SwUk3bJOFfRcP/8WPDZXWAZ8h50eXkHCLgwwr0=; b=UQlkwWuPykoyP/a7LdWi9zPUDuK8+EmDomgp3gLwK//qY/WNhhEAKvYgPE94NkNyMX iYdIIoDFnKc0aBo2rdW7AxUqa3FYXrh6mi65mYA9teVk4d44NVcf6xgT8K0O9fFVwQmt 5oY1XH2RCjj9uHXRtcO1DdaM9exreGByuN2b8KiT7xKWdcEcU24wu853/zyXCP3UNjaz v+Jfp3EDsiPMXqy4SyKrq/rTDlU996bfJDEwSTnqJt1ngNwtm8nN/ZTD9QCyo0F9ObsB 5qP/kAt+e1N1A6zO+AQZ8AL/7G+S4ZnvV9OjeBM9cYqWZ2D+LgXgtFGBdlWiB+JWyQQp qqzg== X-Gm-Message-State: AOAM532J5UtKpPLTd1Oc6F/G4QmYMwnqVFTsiT7EYQ/JrinM9Dnlrr9t X3F/6u9JUVXAVsFnXPAe22Wl8ss9Ukzz2bJghXA= X-Google-Smtp-Source: ABdhPJzGpMq8XUPIDOg9fDWsLrN5a+O7DMnGGoXUcYOwKUPyj3Knl550loxJgoYLZ+wIiKhMg6xEVMR//nmjjrSwMEI= X-Received: by 2002:a5d:510f:: with SMTP id s15mr7914208wrt.21.1610705397734; Fri, 15 Jan 2021 02:09:57 -0800 (PST) MIME-Version: 1.0 References: <20210114134142.GC7692@redhat.com> In-Reply-To: From: Jonathan Wakely Date: Fri, 15 Jan 2021 10:09:46 +0000 Message-ID: Subject: Re: Add dg-require-wchars to libstdc++ testsuite To: Alexandre Oliva Cc: Jonathan Wakely , "libstdc++" , gcc-patches@gcc.gnu.org, Corentin Gay X-Spam-Status: No, score=-2.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, HTML_MESSAGE, RCVD_IN_DNSWL_NONE, 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 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: libstdc++@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++ mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jan 2021 10:10:00 -0000 On Thu, 14 Jan 2021, 22:22 Alexandre Oliva, wrote: > On Jan 14, 2021, Jonathan Wakely wrote: > > > The problem is that uses wchar_t in default > > template arguments: > > > I think we should fix the header, not disable tests that don't use > > that default template argument. The attached patch should allow you to > > use wstring_convert and wbuffer_convert without wchar_t support. The > > tests which instantiate it with char16_t or char32_t instead of > > wchar_t should work with this patch, right? > > Thanks, I'll give it a spin. That said, ... > > >