linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V2 1/3] selftests: add kselftest_install to .gitignore
@ 2022-03-02 18:01 Muhammad Usama Anjum
  2022-03-02 18:01 ` [PATCH V2 2/3] selftests/exec: add generated files " Muhammad Usama Anjum
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Muhammad Usama Anjum @ 2022-03-02 18:01 UTC (permalink / raw)
  To: Shuah Khan; +Cc: Muhammad Usama Anjum, kernel, linux-kselftest, linux-kernel

Add kselftest_install directory to the .gitignore which is created while
creation of tar ball of objects:
make -C tools/testing/selftests gen_tar

Signed-off-by: Muhammad Usama Anjum <usama.anjum@collabora.com>
---
Changes in V2:
Break up the patch in individual test patches
Remove changes related to net selftest
---
 tools/testing/selftests/.gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/testing/selftests/.gitignore b/tools/testing/selftests/.gitignore
index 055a5019b13c..cb24124ac5b9 100644
--- a/tools/testing/selftests/.gitignore
+++ b/tools/testing/selftests/.gitignore
@@ -3,6 +3,7 @@ gpiogpio-event-mon
 gpiogpio-hammer
 gpioinclude/
 gpiolsgpio
+kselftest_install/
 tpm2/SpaceTest.log
 
 # Python bytecode and cache
-- 
2.30.2


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

* [PATCH V2 2/3] selftests/exec: add generated files to .gitignore
  2022-03-02 18:01 [PATCH V2 1/3] selftests: add kselftest_install to .gitignore Muhammad Usama Anjum
@ 2022-03-02 18:01 ` Muhammad Usama Anjum
  2022-03-03 22:22   ` Shuah Khan
  2022-03-02 18:01 ` [PATCH V2 3/3] selftests: kvm: add generated file to the .gitignore Muhammad Usama Anjum
  2022-03-03 22:21 ` [PATCH V2 1/3] selftests: add kselftest_install to .gitignore Shuah Khan
  2 siblings, 1 reply; 6+ messages in thread
From: Muhammad Usama Anjum @ 2022-03-02 18:01 UTC (permalink / raw)
  To: Eric Biederman, Kees Cook, Shuah Khan
  Cc: Muhammad Usama Anjum, kernel, linux-mm, linux-kselftest, linux-kernel

Add generated files non-regular and null-argv to .gitignore file.

Signed-off-by: Muhammad Usama Anjum <usama.anjum@collabora.com>
---
 tools/testing/selftests/exec/.gitignore | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/testing/selftests/exec/.gitignore b/tools/testing/selftests/exec/.gitignore
index 9e2f00343f15..90c238ba6a4b 100644
--- a/tools/testing/selftests/exec/.gitignore
+++ b/tools/testing/selftests/exec/.gitignore
@@ -7,6 +7,8 @@ execveat.moved
 execveat.path.ephemeral
 execveat.ephemeral
 execveat.denatured
+non-regular
+null-argv
 /load_address_*
 /recursion-depth
 xxxxxxxx*
-- 
2.30.2


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

* [PATCH V2 3/3] selftests: kvm: add generated file to the .gitignore
  2022-03-02 18:01 [PATCH V2 1/3] selftests: add kselftest_install to .gitignore Muhammad Usama Anjum
  2022-03-02 18:01 ` [PATCH V2 2/3] selftests/exec: add generated files " Muhammad Usama Anjum
@ 2022-03-02 18:01 ` Muhammad Usama Anjum
  2022-03-03 22:23   ` Shuah Khan
  2022-03-03 22:21 ` [PATCH V2 1/3] selftests: add kselftest_install to .gitignore Shuah Khan
  2 siblings, 1 reply; 6+ messages in thread
From: Muhammad Usama Anjum @ 2022-03-02 18:01 UTC (permalink / raw)
  To: Paolo Bonzini, Shuah Khan
  Cc: Muhammad Usama Anjum, kernel, kvm, linux-kselftest, linux-kernel

Add hyperv_svm_test to the .gitignore file.

Signed-off-by: Muhammad Usama Anjum <usama.anjum@collabora.com>
---
 tools/testing/selftests/kvm/.gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/testing/selftests/kvm/.gitignore b/tools/testing/selftests/kvm/.gitignore
index 7903580a48ac..4d11adeac214 100644
--- a/tools/testing/selftests/kvm/.gitignore
+++ b/tools/testing/selftests/kvm/.gitignore
@@ -21,6 +21,7 @@
 /x86_64/hyperv_clock
 /x86_64/hyperv_cpuid
 /x86_64/hyperv_features
+/x86_64/hyperv_svm_test
 /x86_64/mmio_warning_test
 /x86_64/mmu_role_test
 /x86_64/platform_info_test
-- 
2.30.2


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

* Re: [PATCH V2 1/3] selftests: add kselftest_install to .gitignore
  2022-03-02 18:01 [PATCH V2 1/3] selftests: add kselftest_install to .gitignore Muhammad Usama Anjum
  2022-03-02 18:01 ` [PATCH V2 2/3] selftests/exec: add generated files " Muhammad Usama Anjum
  2022-03-02 18:01 ` [PATCH V2 3/3] selftests: kvm: add generated file to the .gitignore Muhammad Usama Anjum
@ 2022-03-03 22:21 ` Shuah Khan
  2 siblings, 0 replies; 6+ messages in thread
From: Shuah Khan @ 2022-03-03 22:21 UTC (permalink / raw)
  To: Muhammad Usama Anjum, Shuah Khan
  Cc: kernel, linux-kselftest, linux-kernel, Shuah Khan

On 3/2/22 11:01 AM, Muhammad Usama Anjum wrote:
> Add kselftest_install directory to the .gitignore which is created while
> creation of tar ball of objects:
> make -C tools/testing/selftests gen_tar
> 
> Signed-off-by: Muhammad Usama Anjum <usama.anjum@collabora.com>
> ---
> Changes in V2:
> Break up the patch in individual test patches
> Remove changes related to net selftest
> ---
>   tools/testing/selftests/.gitignore | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/tools/testing/selftests/.gitignore b/tools/testing/selftests/.gitignore
> index 055a5019b13c..cb24124ac5b9 100644
> --- a/tools/testing/selftests/.gitignore
> +++ b/tools/testing/selftests/.gitignore
> @@ -3,6 +3,7 @@ gpiogpio-event-mon
>   gpiogpio-hammer
>   gpioinclude/
>   gpiolsgpio
> +kselftest_install/
>   tpm2/SpaceTest.log
>   
>   # Python bytecode and cache
> 

Applied to linux-kselftest next for Linux 5.18-rc1

thanks,
-- Shuah

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

* Re: [PATCH V2 2/3] selftests/exec: add generated files to .gitignore
  2022-03-02 18:01 ` [PATCH V2 2/3] selftests/exec: add generated files " Muhammad Usama Anjum
@ 2022-03-03 22:22   ` Shuah Khan
  0 siblings, 0 replies; 6+ messages in thread
From: Shuah Khan @ 2022-03-03 22:22 UTC (permalink / raw)
  To: Muhammad Usama Anjum, Eric Biederman, Kees Cook, Shuah Khan
  Cc: kernel, linux-mm, linux-kselftest, linux-kernel, Shuah Khan

On 3/2/22 11:01 AM, Muhammad Usama Anjum wrote:
> Add generated files non-regular and null-argv to .gitignore file.
> 
> Signed-off-by: Muhammad Usama Anjum <usama.anjum@collabora.com>
> ---
>   tools/testing/selftests/exec/.gitignore | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/tools/testing/selftests/exec/.gitignore b/tools/testing/selftests/exec/.gitignore
> index 9e2f00343f15..90c238ba6a4b 100644
> --- a/tools/testing/selftests/exec/.gitignore
> +++ b/tools/testing/selftests/exec/.gitignore
> @@ -7,6 +7,8 @@ execveat.moved
>   execveat.path.ephemeral
>   execveat.ephemeral
>   execveat.denatured
> +non-regular
> +null-argv
>   /load_address_*
>   /recursion-depth
>   xxxxxxxx*
> 

Applied to linux-kselftest next for Linux 5.18-rc1

thanks,
-- Shuah

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

* Re: [PATCH V2 3/3] selftests: kvm: add generated file to the .gitignore
  2022-03-02 18:01 ` [PATCH V2 3/3] selftests: kvm: add generated file to the .gitignore Muhammad Usama Anjum
@ 2022-03-03 22:23   ` Shuah Khan
  0 siblings, 0 replies; 6+ messages in thread
From: Shuah Khan @ 2022-03-03 22:23 UTC (permalink / raw)
  To: Muhammad Usama Anjum, Paolo Bonzini, Shuah Khan
  Cc: kernel, kvm, linux-kselftest, linux-kernel, Shuah Khan

On 3/2/22 11:01 AM, Muhammad Usama Anjum wrote:
> Add hyperv_svm_test to the .gitignore file.
> 
> Signed-off-by: Muhammad Usama Anjum <usama.anjum@collabora.com>
> ---
>   tools/testing/selftests/kvm/.gitignore | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/tools/testing/selftests/kvm/.gitignore b/tools/testing/selftests/kvm/.gitignore
> index 7903580a48ac..4d11adeac214 100644
> --- a/tools/testing/selftests/kvm/.gitignore
> +++ b/tools/testing/selftests/kvm/.gitignore
> @@ -21,6 +21,7 @@
>   /x86_64/hyperv_clock
>   /x86_64/hyperv_cpuid
>   /x86_64/hyperv_features
> +/x86_64/hyperv_svm_test
>   /x86_64/mmio_warning_test
>   /x86_64/mmu_role_test
>   /x86_64/platform_info_test
> 

Applied to linux-kselftest next for Linux 5.18-rc1

thanks,
-- Shuah

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

end of thread, other threads:[~2022-03-03 22:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-02 18:01 [PATCH V2 1/3] selftests: add kselftest_install to .gitignore Muhammad Usama Anjum
2022-03-02 18:01 ` [PATCH V2 2/3] selftests/exec: add generated files " Muhammad Usama Anjum
2022-03-03 22:22   ` Shuah Khan
2022-03-02 18:01 ` [PATCH V2 3/3] selftests: kvm: add generated file to the .gitignore Muhammad Usama Anjum
2022-03-03 22:23   ` Shuah Khan
2022-03-03 22:21 ` [PATCH V2 1/3] selftests: add kselftest_install to .gitignore Shuah Khan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).