Received: by 2002:a05:6a10:f347:0:0:0:0 with SMTP id d7csp2258664pxu; Fri, 18 Dec 2020 09:00:36 -0800 (PST) X-Google-Smtp-Source: ABdhPJw6yUjc3Fgt/BYzWcPUlIu07LAhcUSXk8C1aJOPYmdoDA7edHB/aclE7XSn8ARfQSCDRXPB X-Received: by 2002:a17:907:105e:: with SMTP id oy30mr4851596ejb.495.1608310836268; Fri, 18 Dec 2020 09:00:36 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1608310836; cv=none; d=google.com; s=arc-20160816; b=AChEjBirErC8/js8sQd/EnLPSBHYpPsEiDGf/xZDferKel8GyRce6xJviOCZ32/67o gQKr6Fyov7VWKmOSmy9nqaAxBXBH35P49EJHrc3IJS8hAGxyMS0XnXH+sdqdD1Eimz8t ZFNPmukWNNrufU3lgnKa8IVYoFq3YbsbI+v+0iucbQO4Ftxu5vy/87Euh7nBfHO/7ikI YwnxksXawvcSaYf/3bgoSaUrBAe9JJe2q1uoAHA3Oq7rAwQzylxqmuXsA+vdNAnTEaza k4H8lbLHHrplLzUGxNn1on1Ob5cONliUsyJ9oJ8WfAD6Q1vInQ1UGDC3ykPuB1upZCTO FuqA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:message-id:date:subject:cc:to:from; bh=VPD+TBtWM7jUm1+Lk1OjUv1nkfl1Jj6+1Xq825dDIJ0=; b=p1eE2vvFY8P9rACAhBp8N6MTEV6+iBn6lAfOt6EDJGTRjljCuavW11mcyhWKMdFXhs usK1DsKlqf2mgIMDWgh1eHLuOYkWoNSLIZNjavO+rxZiWWsXJ5nOeXw3LqyoCaCH+j3p AHVufluCeWrWblZIMNOI4DoN2eOALG+zpSHxC7UCyrNhU+ZtP5SGRmQBgiLyG6HSTNZW wkBujBDNWaY+Y8rKyLFMXKRH39sYRmuIgA9ql2mRGWvWdUH9BgDaH0/vuboivU1c9efz qOkvd62XAx5Sbzy9Qqwxq8VkPaFOCydQHC8rSbgGfXuPQ0Q8LZcYgyWdfUMoA0F7Pee6 u6tQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id hr6si5364422ejc.319.2020.12.18.09.00.13; Fri, 18 Dec 2020 09:00:36 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728532AbgLRQ5e (ORCPT + 99 others); Fri, 18 Dec 2020 11:57:34 -0500 Received: from sym2.noone.org ([178.63.92.236]:53016 "EHLO sym2.noone.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725949AbgLRQ5d (ORCPT ); Fri, 18 Dec 2020 11:57:33 -0500 Received: by sym2.noone.org (Postfix, from userid 1002) id 4CyFQC6yzYzvjkl; Fri, 18 Dec 2020 17:56:51 +0100 (CET) From: Tobias Klauser To: Shuah Khan Cc: linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] selftests/timens: add futex binary to .gitignore Date: Fri, 18 Dec 2020 17:56:51 +0100 Message-Id: <20201218165651.4538-1-tklauser@distanz.ch> X-Mailer: git-send-email 2.11.0 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add the futex test binary introduced by commit a4fd8414659b ("selftests/timens: Add a test for futex()") to .gitignore. Signed-off-by: Tobias Klauser --- tools/testing/selftests/timens/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/testing/selftests/timens/.gitignore b/tools/testing/selftests/timens/.gitignore index 2e43851b47c1..fe1eb8271b35 100644 --- a/tools/testing/selftests/timens/.gitignore +++ b/tools/testing/selftests/timens/.gitignore @@ -1,6 +1,7 @@ # SPDX-License-Identifier: GPL-2.0-only clock_nanosleep exec +futex gettime_perf gettime_perf_cold procfs -- 2.29.0