Received: by 2002:a05:6358:11c7:b0:104:8066:f915 with SMTP id i7csp3154074rwl; Sun, 2 Apr 2023 01:18:10 -0700 (PDT) X-Google-Smtp-Source: AK7set+qSxnHDvn29sPTS5d23oJqvY9r5dLy75ciYDUgikCaPrOsHVMtYT5pDtl6inWPuwbWzIrC X-Received: by 2002:a05:6a20:b704:b0:dd:cef1:93e4 with SMTP id fg4-20020a056a20b70400b000ddcef193e4mr24860868pzb.14.1680423490396; Sun, 02 Apr 2023 01:18:10 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1680423490; cv=none; d=google.com; s=arc-20160816; b=zGBoud6Fbhz5zS2A9DHaXe2b6KPdEnxcIvNAGxDsZldB9WRLdSfrVMXQ6Q6G5hY429 A0c308zrgp4wcSUmgTf0fJWzEDv+WbSEkMNIP+9FLpIto7x433DirJUeIgldLjJTim/4 b2EaNpHjqU8BJK9VJT3fPF4EShsmLli/n3NzGrnftn+WkEcd5Ua8jY1B+wM1cXIax3gI +wCgkA6wE7D2rOp2t5ljSo8BzFDvCFzczrFOQcxxR28uJA3G8o5wa8xJxB4zgtN7MoEu daOFtkYaBnaDVglUChKI6htKZUJ4YSJO40XEdwBuDamp8uNtLCvDdln/hSDZFtpf7e2j 3YAA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:references:in-reply-to:message-id:date:subject :cc:to:from; bh=OgmgE2xyUDEp8L0Ji5WsFQWoTfugnV+4k0Kl/3RRFtk=; b=hHRWXaiy7S+YHVMzSmQDyDtzhb/go1Y/z00hU8DljlckTVdaxrpyOsP4CsxaO50WRC QOX2hdkrPlP+froDWxDAAQYbDdHyw+Tpf7Dx07jPOW71vpLIf5EF40bmJOG8xt4GQ5Py 0hoSdG+b8gh1iCbb2eXQVQFtdM1QhmRRDUNucTLcIKVeUfuSjugy1l4pfXs7zTDUjugo PRy3Lj3KIF3Hub+MTzfUPdfpunxTwMl9bYiMwmvwvBO16dG47e/MRbEpUgw4If9DYRPF HEEnbx8tGyvHGsBTk7hU004Ue9qG/hOr1HA9dL+kHPSbmAcPfPW/28U46Lz64u80YPZ0 PZCQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 2620:137:e000::1:20 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from out1.vger.email (out1.vger.email. [2620:137:e000::1:20]) by mx.google.com with ESMTP id q14-20020aa7982e000000b0062877f63945si6158998pfl.1.2023.04.02.01.17.58; Sun, 02 Apr 2023 01:18:10 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 2620:137:e000::1:20 as permitted sender) client-ip=2620:137:e000::1:20; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 2620:137:e000::1:20 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229469AbjDBIOS (ORCPT + 99 others); Sun, 2 Apr 2023 04:14:18 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44898 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230110AbjDBIOL (ORCPT ); Sun, 2 Apr 2023 04:14:11 -0400 Received: from 1wt.eu (wtarreau.pck.nerim.net [62.212.114.60]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 89B931A465 for ; Sun, 2 Apr 2023 01:14:10 -0700 (PDT) Received: (from willy@localhost) by pcw.home.local (8.15.2/8.15.2/Submit) id 3328E4kc012124; Sun, 2 Apr 2023 10:14:04 +0200 From: Willy Tarreau To: "Paul E. McKenney" Cc: linux@weissschuh.net, v@vda.io, linux-kernel@vger.kernel.org, Willy Tarreau Subject: [PATCH 2/2] tools/nolibc: fix build of the test case using glibc Date: Sun, 2 Apr 2023 10:13:57 +0200 Message-Id: <20230402081357.12078-3-w@1wt.eu> X-Mailer: git-send-email 2.17.5 In-Reply-To: <20230402081357.12078-1-w@1wt.eu> References: <20230402081357.12078-1-w@1wt.eu> X-Spam-Status: No, score=-0.0 required=5.0 tests=SPF_HELO_PASS,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on lindbergh.monkeyblade.net Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Some extra tests for various integer types and limits were added by commit d1209597ff00 ("tools/nolibc: add tests for the integer limits in stdint.h"), but we forgot to retest with glibc. Stddef and stdint are now needed for the program to build there. Cc: Vincent Dagonneau Signed-off-by: Willy Tarreau --- tools/testing/selftests/nolibc/nolibc-test.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/testing/selftests/nolibc/nolibc-test.c b/tools/testing/selftests/nolibc/nolibc-test.c index 6f2f109569a3..1bafbd8da6af 100644 --- a/tools/testing/selftests/nolibc/nolibc-test.c +++ b/tools/testing/selftests/nolibc/nolibc-test.c @@ -34,6 +34,8 @@ #include #include #include +#include +#include #include #endif #endif -- 2.17.5