From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-x332.google.com (mail-wm1-x332.google.com [IPv6:2a00:1450:4864:20::332]) by sourceware.org (Postfix) with ESMTPS id CB64D384241D for ; Fri, 11 Dec 2020 23:19:32 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org CB64D384241D Received: by mail-wm1-x332.google.com with SMTP id d3so8823941wmb.4 for ; Fri, 11 Dec 2020 15:19:32 -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=dlhfIEu38LhczTCveHOTxTz0JqjCum4uzJFFufzhd+s=; b=RcxX62TF8LDr1SPQQlSg5LqVydcDW8ZzQZY/4zgsvZBaU8h47fEQ2rg49gBvXjFfwa ffql4CqN2eb5SNMxgGcFgERlhLqbW5JMgKGLCuJluTX3p7LWXNTglCxfJtv74B590qUy k13ReVI/JMpqbaRYasgVLGUbSva7tSZVQFZ4nTj2Tu1VrVYSDuwrmfiGN+sXDS4wRt0i vCOvOjb/LMsyy2unjjbH0uacCkAleDu11W/4nSAgyCoQP6WyEk6w86do2dnl71e73Dxo /J1B2vr1IlPW9ckd0Noqb6Q/JEZ6UornL5YJYZebUGfplVWJKMBWzfkpnyWRsrH3acaY 5S3A== X-Gm-Message-State: AOAM530XKFBmlzarwtaap+UNobnRvCjQomebQ8dyPWXdrH6AW7XjBb3Z qIhPw5LOEBhURbxYCDYnK2LvTAwZ0EVVb/nr6MU= X-Google-Smtp-Source: ABdhPJwH8PU6hLr+DsccbN05or9/uGh7MmodB/F3Bd3wewWVsajnTb/NI+P9bW7hHZh6CvJzeZEpneneEGb+6arK0XM= X-Received: by 2002:a1c:f203:: with SMTP id s3mr15831871wmc.14.1607728771798; Fri, 11 Dec 2020 15:19:31 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: From: Jonathan Wakely Date: Fri, 11 Dec 2020 23:19:18 +0000 Message-ID: Subject: Re: Why are my tests for vector constexpr not being run, labelled as "UNSUPPORTED"? To: Josh Marshall Cc: "libstdc++" X-Spam-Status: No, score=-1.4 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, 11 Dec 2020 23:19:34 -0000 On Fri, 11 Dec 2020, 22:23 Josh Marshall via Libstdc++, < libstdc++@gcc.gnu.org> wrote: > Hello all, > > I have a decent number of tests finally written, and I should get a PR in > soon. But before all that, I can't seem to get the tests I wrote to run. > In the logs, they are found and labelled "UNSUPPORTED". > > Just updated against master, work at https://gitlab.com/anadon/gcc > The dg-options directives that add -std=gnu++20 need to come before the dg-do directives that limit the tests to c++2a only. Otherwise the -std option isn't in use by the time the check for c++2a is done.