From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qt1-x82b.google.com (mail-qt1-x82b.google.com [IPv6:2607:f8b0:4864:20::82b]) by sourceware.org (Postfix) with ESMTPS id CD530385040A for ; Mon, 8 Mar 2021 13:03:32 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org CD530385040A Received: by mail-qt1-x82b.google.com with SMTP id t13so5985096qta.11 for ; Mon, 08 Mar 2021 05:03: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:subject:to:cc:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=/CnYIVXUIQC9882o2XKcE95WDtv7r2aPTUtrJ5GJvcg=; b=jJD8OujmRcRc7TbwJO5roMjWS83549gocDgeXMnqTKZmODL0utbmrjGOVsJqXhsnHu SDVUrcqa1/6KdkpAdq7R63CQxomIPw8/ke6+WLtjK5b7tNarPTf9XLK5DyM4SXaW/zu4 NOtN5+5lN2fGWjruaIdRkd2nB4y65JKIe7ZCTN2w/sCmx50+yxLEKg6RMswXEdc7YOet YRpPRJdtWlahZBk+j6UzvJXuIaNW4ox+PvYrpXKh9Y5vG7vOcFu00yYvlc5+1YSRfKoJ YlWG6KLEPMDE+hvLwm4bTfoilL+6cNuhQ0GUHqlqQQL3CuE1pCIb7SGy9G5jMiyWGL41 bCNw== X-Gm-Message-State: AOAM531Dn52l6XoCuzViBNIryCa5szMO3RQyXs1eH3QP3gnlCAddwsOC atj+/XROY+rE6V8OwYl9X483jlPKclce9g== X-Google-Smtp-Source: ABdhPJywdIRk4fw7CSq7eRX5qc6EnZGWRe+asNyRp7RcUAs8LqGAy+HzmTDXlukhp5wbg/SDH2VAAw== X-Received: by 2002:ac8:6e9c:: with SMTP id c28mr4831427qtv.117.1615208612253; Mon, 08 Mar 2021 05:03:32 -0800 (PST) Received: from [192.168.1.4] ([177.194.48.209]) by smtp.googlemail.com with ESMTPSA id k138sm7694759qke.60.2021.03.08.05.03.31 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 08 Mar 2021 05:03:31 -0800 (PST) Subject: Re: [PATCH 02/52] linux: Add futimes test To: Joseph Myers Cc: libc-alpha@sourceware.org References: <20210305201518.798584-1-adhemerval.zanella@linaro.org> <20210305201518.798584-3-adhemerval.zanella@linaro.org> From: Adhemerval Zanella Message-ID: <39ec6136-0ff2-a6b7-d040-537e57f52d64@linaro.org> Date: Mon, 8 Mar 2021 10:03:29 -0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.1 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=-13.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, NICE_REPLY_A, 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 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: Mon, 08 Mar 2021 13:03:34 -0000 On 05/03/2021 21:02, Joseph Myers wrote: > On Fri, 5 Mar 2021, Adhemerval Zanella via Libc-alpha wrote: > >> diff --git a/sysdeps/unix/sysv/linux/tst-futimes.c b/sysdeps/unix/sysv/linux/tst-futimes.c >> new file mode 100644 >> index 0000000000..026b0af023 >> --- /dev/null >> +++ b/sysdeps/unix/sysv/linux/tst-futimes.c >> @@ -0,0 +1,85 @@ >> +/* Basix test for utimes. > > If it's testing futimes, the comment should say futimes not utimes. > I will fix on the other occurrences as well.