Received: by 2002:a05:6a10:f347:0:0:0:0 with SMTP id d7csp1383580pxu; Thu, 17 Dec 2020 08:42:58 -0800 (PST) X-Google-Smtp-Source: ABdhPJz4GR5QdGBCelOXIP3LVQx0gjot8SfkKEMO0iUaZi3VoYaw5tPrW1WS9rxNJRlkloEQ0kth X-Received: by 2002:aa7:d354:: with SMTP id m20mr165420edr.195.1608223378615; Thu, 17 Dec 2020 08:42:58 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1608223378; cv=none; d=google.com; s=arc-20160816; b=B+M/f/mLw6Ig53UikRvLk0yNIbZE9tiahxrrbpJMaSb4eGw/vPSd2JhEW8VMYf1jam wMYS67OVn+9yXcTeKG26++LzBNf8CD8mWdmZxuoAbviCkKDlsyCHF0MZHldczdO9Zd9o PZGMkbh3O0AJpNuGdGxy6G2oYjCgqMB6erj8MTgHPLkFfH8/Fxyqi+NlYrgpNjmKwfGa OnWz3HjUDNZaMl7rghlQr7pQBKMamgL39dOb3vmuNlBrei60yFUSAXUWsVigQNau1Q62 JFJxVbtRv57+gDbLAG+ZzQrfoDykeJr863z6WhlT6sqtYyC428c12c/hAA336uM03LMd 07tg== 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=m3/yfWYy1pY3buxgrFB7ZefD7KIju0sQOMFVLgeHcDY=; b=KF+8CWK9ONPnmIGWbgzAH+7xUaudZ/A4kctEGw0QfUUjXEvCw6DhyI9K8TH7KwvewS +RMK68Fp1a5GVz8PL5eWOeB+O5eM2W3gIFuAaaLdJmHh71RBNl4GKQT5zWTFt/8LdLZL cV1Qu4SX165yM5qSJj7PGufoNGoMUJ3DoWvWVfF5fRDidJemmhw52ommJODy/1NMmTIy fHfI1XjiTjqvSNiSQ+0pArHdwhw9pDFU0ZN3Umw5OGa8RB7c+oEJ4iuvQlfQPauBmwlK NogUqCiDFCCqAvt3CMTtBRLTB4gM8guxj/7jHLNLu5cGxYljo6Y0VU6ZREG2o4apWtl4 kGDQ== 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 u22si3001468ejc.544.2020.12.17.08.42.36; Thu, 17 Dec 2020 08:42:58 -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 S1728000AbgLQQmY (ORCPT + 99 others); Thu, 17 Dec 2020 11:42:24 -0500 Received: from sym2.noone.org ([178.63.92.236]:38674 "EHLO sym2.noone.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727303AbgLQQmW (ORCPT ); Thu, 17 Dec 2020 11:42:22 -0500 Received: by sym2.noone.org (Postfix, from userid 1002) id 4Cxcvc60hHzvjkw; Thu, 17 Dec 2020 17:31:40 +0100 (CET) From: Tobias Klauser To: Shuah Khan Cc: Vincenzo Frascino , linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] selftests/vDSO: add additional binaries to .gitignore Date: Thu, 17 Dec 2020 17:31:40 +0100 Message-Id: <20201217163140.22635-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 test binaries introduced by commit 693f5ca08ca0 ("kselftest: Extend vDSO selftest"), commit 03f55c7952c9 ("kselftest: Extend vDSO selftest to clock_getres") and commit c7e5789b24d3 ("kselftest: Move test_vdso to the vDSO test suite") to .gitignore. Signed-off-by: Tobias Klauser --- tools/testing/selftests/vDSO/.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/testing/selftests/vDSO/.gitignore b/tools/testing/selftests/vDSO/.gitignore index 5eb64d41e541..a8dc51af5a9c 100644 --- a/tools/testing/selftests/vDSO/.gitignore +++ b/tools/testing/selftests/vDSO/.gitignore @@ -1,5 +1,8 @@ # SPDX-License-Identifier: GPL-2.0-only vdso_test +vdso_test_abi +vdso_test_clock_getres +vdso_test_correctness vdso_test_gettimeofday vdso_test_getcpu vdso_standalone_test_x86 -- 2.29.0