public inbox for linux-kselftest@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] selftests: add gitignore files to user_events, tdx and dmabuf-heaps
@ 2023-10-04 13:47 Javier Carrasco
  2023-10-04 13:47 ` [PATCH 1/3] selftests/user_events: add gitignore file Javier Carrasco
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Javier Carrasco @ 2023-10-04 13:47 UTC (permalink / raw)
  To: Shuah Khan; +Cc: linux-kernel, linux-kselftest, Javier Carrasco

user_events, tdx and dmabuf-heaps build a series of binaries that can be
safely ignored by git as it is done by other selftests.

Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
---
Javier Carrasco (3):
      selftests/user_events: add gitignore file
      selftests/tdx: add gitignore file
      selftests/dmabuf-heaps: add gitignore file

 tools/testing/selftests/dmabuf-heaps/.gitignore | 1 +
 tools/testing/selftests/tdx/.gitignore          | 1 +
 tools/testing/selftests/user_events/.gitignore  | 4 ++++
 3 files changed, 6 insertions(+)
---
base-commit: cbf3a2cb156a2c911d8f38d8247814b4c07f49a2
change-id: 20231004-topic-selftest_gitignore-3e82f4341001

Best regards,
-- 
Javier Carrasco <javier.carrasco.cruz@gmail.com>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/3] selftests/user_events: add gitignore file
  2023-10-04 13:47 [PATCH 0/3] selftests: add gitignore files to user_events, tdx and dmabuf-heaps Javier Carrasco
@ 2023-10-04 13:47 ` Javier Carrasco
  2023-10-04 13:47 ` [PATCH 2/3] selftests/tdx: " Javier Carrasco
  2023-10-04 13:47 ` [PATCH 3/3] selftests/dmabuf-heaps: " Javier Carrasco
  2 siblings, 0 replies; 4+ messages in thread
From: Javier Carrasco @ 2023-10-04 13:47 UTC (permalink / raw)
  To: Shuah Khan; +Cc: linux-kernel, linux-kselftest, Javier Carrasco

user_events builds a series of binaries that can be ignored by git.

Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
---
 tools/testing/selftests/user_events/.gitignore | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tools/testing/selftests/user_events/.gitignore b/tools/testing/selftests/user_events/.gitignore
new file mode 100644
index 000000000000..f570febd211b
--- /dev/null
+++ b/tools/testing/selftests/user_events/.gitignore
@@ -0,0 +1,4 @@
+abi_test
+dyn_test
+ftrace_test
+perf_test

-- 
2.39.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/3] selftests/tdx: add gitignore file
  2023-10-04 13:47 [PATCH 0/3] selftests: add gitignore files to user_events, tdx and dmabuf-heaps Javier Carrasco
  2023-10-04 13:47 ` [PATCH 1/3] selftests/user_events: add gitignore file Javier Carrasco
@ 2023-10-04 13:47 ` Javier Carrasco
  2023-10-04 13:47 ` [PATCH 3/3] selftests/dmabuf-heaps: " Javier Carrasco
  2 siblings, 0 replies; 4+ messages in thread
From: Javier Carrasco @ 2023-10-04 13:47 UTC (permalink / raw)
  To: Shuah Khan; +Cc: linux-kernel, linux-kselftest, Javier Carrasco

tdx builds a tdx_guest_test binary that can be ignored by git.

Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
---
 tools/testing/selftests/tdx/.gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/testing/selftests/tdx/.gitignore b/tools/testing/selftests/tdx/.gitignore
new file mode 100644
index 000000000000..5db4d15cc673
--- /dev/null
+++ b/tools/testing/selftests/tdx/.gitignore
@@ -0,0 +1 @@
+tdx_guest_test

-- 
2.39.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 3/3] selftests/dmabuf-heaps: add gitignore file
  2023-10-04 13:47 [PATCH 0/3] selftests: add gitignore files to user_events, tdx and dmabuf-heaps Javier Carrasco
  2023-10-04 13:47 ` [PATCH 1/3] selftests/user_events: add gitignore file Javier Carrasco
  2023-10-04 13:47 ` [PATCH 2/3] selftests/tdx: " Javier Carrasco
@ 2023-10-04 13:47 ` Javier Carrasco
  2 siblings, 0 replies; 4+ messages in thread
From: Javier Carrasco @ 2023-10-04 13:47 UTC (permalink / raw)
  To: Shuah Khan; +Cc: linux-kernel, linux-kselftest, Javier Carrasco

dmabuf-heaps builds a dmabuf-heap binary that can be ignored by git.

Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
---
 tools/testing/selftests/dmabuf-heaps/.gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/testing/selftests/dmabuf-heaps/.gitignore b/tools/testing/selftests/dmabuf-heaps/.gitignore
new file mode 100644
index 000000000000..b500e76b9045
--- /dev/null
+++ b/tools/testing/selftests/dmabuf-heaps/.gitignore
@@ -0,0 +1 @@
+dmabuf-heap

-- 
2.39.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-10-04 13:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-04 13:47 [PATCH 0/3] selftests: add gitignore files to user_events, tdx and dmabuf-heaps Javier Carrasco
2023-10-04 13:47 ` [PATCH 1/3] selftests/user_events: add gitignore file Javier Carrasco
2023-10-04 13:47 ` [PATCH 2/3] selftests/tdx: " Javier Carrasco
2023-10-04 13:47 ` [PATCH 3/3] selftests/dmabuf-heaps: " Javier Carrasco

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox