From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf1-x429.google.com (mail-pf1-x429.google.com [IPv6:2607:f8b0:4864:20::429]) by sourceware.org (Postfix) with ESMTPS id 661E03865460 for ; Tue, 6 Jul 2021 20:23:47 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 661E03865460 Received: by mail-pf1-x429.google.com with SMTP id 145so157774pfv.0 for ; Tue, 06 Jul 2021 13:23:47 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:cc:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=WvIIC8kPSKSvvJjPpm/kPsv0XbKez5aieci5yA7hyPE=; b=rPs5f0ZOAo1sn0ty6zfGRD8NEftp6HplnV2KzKOqWvgkWWVJt2s78bm4PByVZG4Byd yrVTYnc0BSCva3bSWwhxb3pFxi+UuOXTV+8s/PIPnr9iv4uFW22ka4P5dR3sToSRxnNc jtfjNhvjyxh5mnou109FfYYWifPgO++WIstLIzb1+o01FWw/PT0/r2ebZvYwuvSbEvVK 3AVuyzZeXjGVKeulbdP7VM8RuuxIJSVmD4TpM8EFYJTkSB7WoQYBfSDGFCD9gINPrF2S uE5UqEzLydovVZIauxUfiY9GPHL8sl4ucRzXkkP+7sp40bgckNXnpldQQIq4OGtig+6d byLg== X-Gm-Message-State: AOAM530suvHJPP5NTyGv1pmiq9GWe7r2hk4SUAepX1yBNCFP2JC6CQHJ kwh8bT2TNuLyrGbobWujtXmWu3XGNjoCbA== X-Google-Smtp-Source: ABdhPJyWXqjdI1Z4W4bMZ+uVAFtcfHfDXlfsx6jfuVkY/v/7kV4ZVkH3bNcAjVztOBkSaZNhLfB7og== X-Received: by 2002:aa7:8392:0:b029:2db:4a7:d866 with SMTP id u18-20020aa783920000b02902db04a7d866mr21502210pfm.66.1625603026148; Tue, 06 Jul 2021 13:23:46 -0700 (PDT) Received: from [192.168.1.108] ([177.194.59.218]) by smtp.gmail.com with ESMTPSA id c141sm5465992pfc.13.2021.07.06.13.23.44 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Tue, 06 Jul 2021 13:23:45 -0700 (PDT) Subject: Re: [PATCH v7 0/4] Add close_range, closefrom, and posix_spawn_file_actions_closefrom_np To: DJ Delorie Cc: libc-alpha@sourceware.org References: From: Adhemerval Zanella Message-ID: Date: Tue, 6 Jul 2021 17:23:43 -0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-6.4 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jul 2021 20:23:48 -0000 On 06/07/2021 16:47, DJ Delorie wrote: > Adhemerval Zanella writes: >> How the trybot handles UNSUPPORTED (exit status 77)? On kernel older than >> 5.9 the test will fail with: > > It only reports tests that differ from the baseline (pre-patch) and > report "FAIL". In theory, UNSUPPORTED should be unreported. > > The trybot runs 5.8.15-301.fc33.x86_64 I ran the testcase on the exactly same kernel: [azanella@localhost i686-linux-gnu]$ uname -a Linux localhost.localdomain 5.8.15-301.fc33.x86_64 #1 SMP Thu Oct 15 16:58:06 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux [azanella@localhost i686-linux-gnu]$ ./testrun.sh misc/tst-close_range error: ../sysdeps/unix/sysv/linux/tst-close_range.c:60: close_range not supported [azanella@localhost i686-linux-gnu]$ echo $? 77 This is expected output for a kernel older than 5.9. Maybe something wrong on how the trybot handles newer UNSUPPORTED?