2022-07-24 15:24:15

by Gautam Menghani

[permalink] [raw]
Subject: [PATCH] selftests/dma: Add a .gitignore file containing name of executable

The dma tests in kselftests are missing a .gitignore file, which leads
to the dma_map_benchmark executable file showing up in "git status".
This patch adds a .gitignore file containing the executable name.

Signed-off-by: Gautam Menghani <[email protected]>
---
tools/testing/selftests/dma/.gitignore | 1 +
1 file changed, 1 insertion(+)
create mode 100644 tools/testing/selftests/dma/.gitignore

diff --git a/tools/testing/selftests/dma/.gitignore b/tools/testing/selftests/dma/.gitignore
new file mode 100644
index 000000000000..668e2f8be2f7
--- /dev/null
+++ b/tools/testing/selftests/dma/.gitignore
@@ -0,0 +1 @@
+dma_map_benchmark
--
2.34.1


2022-08-17 17:53:59

by Gautam Menghani

[permalink] [raw]
Subject: Re: [PATCH] selftests/dma: Add a .gitignore file containing name of executable

On Sun, Jul 24, 2022 at 08:29:31PM +0530, Gautam Menghani wrote:
> The dma tests in kselftests are missing a .gitignore file, which leads
> to the dma_map_benchmark executable file showing up in "git status".
> This patch adds a .gitignore file containing the executable name.
>
> Signed-off-by: Gautam Menghani <[email protected]>
> ---
> tools/testing/selftests/dma/.gitignore | 1 +
> 1 file changed, 1 insertion(+)
> create mode 100644 tools/testing/selftests/dma/.gitignore
>
> diff --git a/tools/testing/selftests/dma/.gitignore b/tools/testing/selftests/dma/.gitignore
> new file mode 100644
> index 000000000000..668e2f8be2f7
> --- /dev/null
> +++ b/tools/testing/selftests/dma/.gitignore
> @@ -0,0 +1 @@
> +dma_map_benchmark
> --
> 2.34.1
>
Hi,

Please review the above patch and let me know if any changes are required.

Thanks,
Gautam