From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ua1-x92e.google.com (mail-ua1-x92e.google.com [IPv6:2607:f8b0:4864:20::92e]) by sourceware.org (Postfix) with ESMTPS id B73963856DC4 for ; Sat, 11 Jun 2022 06:49:47 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B73963856DC4 Received: by mail-ua1-x92e.google.com with SMTP id d18so366625uaw.2 for ; Fri, 10 Jun 2022 23:49:47 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=DqZ+oL5HLgLB2yVqj+JX4ZfhYO8AbYx8o/J7bj10hLA=; b=bDPMrgDlffbEyOmMyWE+Z0TOQqzZdfIMrmFdTHbo60SeWpKNSIfd6pBbYMWfaiE1ua sVSj7TlbV1PslbZ0yhIC6EOr+GqChyjBahXC3xutKpxpx7+c9I0APYQZE+/zRnXwvXXW WfWA34vIUmfqiuU1IdHV5vdbhQ4K2Cpa9xt2krO4TqJ+WjQUgri2qQYoSvYBDyDMM2Xs JQSIcZ1l7WRljBENj78sx6euinflQx4ppAgUhqip/rZSkBWBf8hbQjoRUlaPNncmhMyE REsBxBvARiXPUcQN6KpvmV1Y5BwjOrw8Rs1YcuMZgP+EyER2QTvbxmoojDhFQMYHWxa3 50kQ== X-Gm-Message-State: AOAM533U+TM2q/ubkdZWHzqr71r/VrX0BvcQojsaIDmIGsH20U499Oae rDJdxf6QB2P22v81wLZ8le6pQbZku2ahl4ORC+r3Xtyhb00S5Q== X-Google-Smtp-Source: ABdhPJyoaBDrE3U766UJIymxIP170yfO4Q2KU6TjkU36sexHr7t+rhQ0ttyvz+Z25aUMDGP6G/2LuSofHAIeUz9tbOE= X-Received: by 2002:a9f:2982:0:b0:369:26d9:3d2b with SMTP id s2-20020a9f2982000000b0036926d93d2bmr31636054uas.53.1654930186937; Fri, 10 Jun 2022 23:49:46 -0700 (PDT) MIME-Version: 1.0 From: Letu Ren Date: Sat, 11 Jun 2022 14:49:35 +0800 Message-ID: Subject: How to skip test when building glibc To: libc-help@sourceware.org Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-0.8 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: libc-help@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-help mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Jun 2022 06:49:49 -0000 Hi, I want to build glibc on ArchLinux RISC-V, however, some unit tests failure block my build script. I noticed that those failure also appeared in official release notes of glibc v2.35. So, I think it's safe to skip them. The problem is how to skip specific unit tests. glibc uses autotools as the build system. However, I cannot find TESTS and XFAIL_TESTS variables in Makefile. Glibc wiki of testsuite doesn't mention it as well. I tried adding the XFAIL_TESTS variable to skip tests, however, I failed. Could anyone help on this issue? Letu Ren