From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from hera.aquilenet.fr (hera.aquilenet.fr [IPv6:2a0c:e300::1]) by sourceware.org (Postfix) with ESMTPS id DD36D384A034 for ; Mon, 1 Jun 2020 17:40:05 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org DD36D384A034 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=ens-lyon.org Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=samuel.thibault@ens-lyon.org Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id F37CA15BE; Mon, 1 Jun 2020 19:40:04 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Pnscj8sLHNi4; Mon, 1 Jun 2020 19:40:03 +0200 (CEST) Received: from function.home (lfbn-bor-1-797-11.w86-234.abo.wanadoo.fr [86.234.239.11]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 44ABD166D; Mon, 1 Jun 2020 19:40:01 +0200 (CEST) Received: from samy by function.home with local (Exim 4.93) (envelope-from ) id 1jfoPn-0021wp-LK; Mon, 01 Jun 2020 19:39:59 +0200 From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Samuel Thibault , commit-hurd@gnu.org Subject: [hurd, commited 1/3] tst-cond11: Fix build with _SC_MONOTONIC_CLOCK > 0 Date: Mon, 1 Jun 2020 19:39:57 +0200 Message-Id: <20200601173959.484096-2-samuel.thibault@ens-lyon.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200601173959.484096-1-samuel.thibault@ens-lyon.org> References: <20200601173959.484096-1-samuel.thibault@ens-lyon.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, KAM_NUMSUBJECT, SPF_HELO_PASS, SPF_NEUTRAL, 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, 01 Jun 2020 17:40:06 -0000 * sysdeps/pthread/tst-cond11.c (do_test): Fix misplaced brace. --- sysdeps/pthread/tst-cond11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdeps/pthread/tst-cond11.c b/sysdeps/pthread/tst-cond11.c index 209e2f0c8d..9be006dddb 100644 --- a/sysdeps/pthread/tst-cond11.c +++ b/sysdeps/pthread/tst-cond11.c @@ -104,8 +104,8 @@ do_test (void) else if (e == 0) FAIL_RET ("sysconf (_SC_MONOTONIC_CLOCK) must not return 0"); else - { # endif + { run_test (CLOCK_MONOTONIC, CLOCK_USE_ATTR_CLOCK); run_test (CLOCK_REALTIME, CLOCK_MONOTONIC); run_test (CLOCK_MONOTONIC, CLOCK_MONOTONIC); -- 2.26.2