* [PATCH 0/4] selftests: add missing gitignore files and include generated objects
@ 2024-01-01 0:41 Javier Carrasco
2024-01-01 0:41 ` [PATCH 1/4] selftests: netfilter: add sctp_collision to gitignore Javier Carrasco
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Javier Carrasco @ 2024-01-01 0:41 UTC (permalink / raw)
To: Shuah Khan; +Cc: linux-kselftest, linux-kernel, Javier Carrasco
This series aims to keep the git status clean after building the
selftests by adding some missing .gitignore files and object inclusion
in existing .gitignore files. This is one of the requirements listed in
the selftests documentation for new tests, but it is not always followed
as desired.
After adding these .gitignore files and including the generated objects,
the working tree appears clean again.
Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
---
Javier Carrasco (4):
selftests: netfilter: add sctp_collision to gitignore
selftests: uevent: add missing gitignore
selftests: thermal: intel: power_floor: add missing gitignore
selftests: thermal: intel: workload_hint: add missing gitignore
tools/testing/selftests/netfilter/.gitignore | 1 +
tools/testing/selftests/thermal/intel/power_floor/.gitignore | 1 +
tools/testing/selftests/thermal/intel/workload_hint/.gitignore | 1 +
tools/testing/selftests/uevent/.gitignore | 1 +
4 files changed, 4 insertions(+)
---
base-commit: 610a9b8f49fbcf1100716370d3b5f6f884a2835a
change-id: 20240101-selftest_gitignore-7da2c503766e
Best regards,
--
Javier Carrasco <javier.carrasco.cruz@gmail.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/4] selftests: netfilter: add sctp_collision to gitignore
2024-01-01 0:41 [PATCH 0/4] selftests: add missing gitignore files and include generated objects Javier Carrasco
@ 2024-01-01 0:41 ` Javier Carrasco
2024-01-01 0:41 ` [PATCH 2/4] selftests: uevent: add missing gitignore Javier Carrasco
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Javier Carrasco @ 2024-01-01 0:41 UTC (permalink / raw)
To: Shuah Khan; +Cc: linux-kselftest, linux-kernel, Javier Carrasco
The commit 'cf791b22bef7 ("selftests: netfilter: test for sctp collision
processing in nf_conntrack") did not add the generated object to the
existing .gitignore for netfilter.
Add the missing object to the .gitignore file.
Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
---
tools/testing/selftests/netfilter/.gitignore | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/testing/selftests/netfilter/.gitignore b/tools/testing/selftests/netfilter/.gitignore
index 4b2928e1c19d..c535754dced2 100644
--- a/tools/testing/selftests/netfilter/.gitignore
+++ b/tools/testing/selftests/netfilter/.gitignore
@@ -2,3 +2,4 @@
nf-queue
connect_close
audit_logread
+sctp_collision
--
2.39.2
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 2/4] selftests: uevent: add missing gitignore
2024-01-01 0:41 [PATCH 0/4] selftests: add missing gitignore files and include generated objects Javier Carrasco
2024-01-01 0:41 ` [PATCH 1/4] selftests: netfilter: add sctp_collision to gitignore Javier Carrasco
@ 2024-01-01 0:41 ` Javier Carrasco
2024-01-01 0:41 ` [PATCH 3/4] selftests: thermal: intel: power_floor: " Javier Carrasco
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Javier Carrasco @ 2024-01-01 0:41 UTC (permalink / raw)
To: Shuah Khan; +Cc: linux-kselftest, linux-kernel, Javier Carrasco
The 'uevent_filtering' test generates an object with the same name,
but there is no .gitignore file in the directory to add the object
as stated in the selftest documentation.
Add the missing .gitignore file and include 'uevent_filtering'.
Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
---
tools/testing/selftests/uevent/.gitignore | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/testing/selftests/uevent/.gitignore b/tools/testing/selftests/uevent/.gitignore
new file mode 100644
index 000000000000..382afb74cd40
--- /dev/null
+++ b/tools/testing/selftests/uevent/.gitignore
@@ -0,0 +1 @@
+uevent_filtering
--
2.39.2
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 3/4] selftests: thermal: intel: power_floor: add missing gitignore
2024-01-01 0:41 [PATCH 0/4] selftests: add missing gitignore files and include generated objects Javier Carrasco
2024-01-01 0:41 ` [PATCH 1/4] selftests: netfilter: add sctp_collision to gitignore Javier Carrasco
2024-01-01 0:41 ` [PATCH 2/4] selftests: uevent: add missing gitignore Javier Carrasco
@ 2024-01-01 0:41 ` Javier Carrasco
2024-01-01 0:41 ` [PATCH 4/4] selftests: thermal: intel: workload_hint: " Javier Carrasco
2024-01-26 9:30 ` [PATCH 0/4] selftests: add missing gitignore files and include generated objects Javier Carrasco
4 siblings, 0 replies; 6+ messages in thread
From: Javier Carrasco @ 2024-01-01 0:41 UTC (permalink / raw)
To: Shuah Khan; +Cc: linux-kselftest, linux-kernel, Javier Carrasco
The 'power_floor' test generates an object with the same name,
but there is no .gitignore file in the directory to add the object as
stated in the selftest documentation.
Add the missing .gitignore file and include 'power_floor'.
Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
---
tools/testing/selftests/thermal/intel/power_floor/.gitignore | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/testing/selftests/thermal/intel/power_floor/.gitignore b/tools/testing/selftests/thermal/intel/power_floor/.gitignore
new file mode 100644
index 000000000000..1b9a76406f18
--- /dev/null
+++ b/tools/testing/selftests/thermal/intel/power_floor/.gitignore
@@ -0,0 +1 @@
+power_floor_test
--
2.39.2
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 4/4] selftests: thermal: intel: workload_hint: add missing gitignore
2024-01-01 0:41 [PATCH 0/4] selftests: add missing gitignore files and include generated objects Javier Carrasco
` (2 preceding siblings ...)
2024-01-01 0:41 ` [PATCH 3/4] selftests: thermal: intel: power_floor: " Javier Carrasco
@ 2024-01-01 0:41 ` Javier Carrasco
2024-01-26 9:30 ` [PATCH 0/4] selftests: add missing gitignore files and include generated objects Javier Carrasco
4 siblings, 0 replies; 6+ messages in thread
From: Javier Carrasco @ 2024-01-01 0:41 UTC (permalink / raw)
To: Shuah Khan; +Cc: linux-kselftest, linux-kernel, Javier Carrasco
The 'workload_hint_test' test generates an object with the same name,
but there is no .gitignore file in the directory to add the object as
stated in the selftest documentation.
Add the missing .gitignore file and include 'workload_hint_test'.
Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
---
tools/testing/selftests/thermal/intel/workload_hint/.gitignore | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/testing/selftests/thermal/intel/workload_hint/.gitignore b/tools/testing/selftests/thermal/intel/workload_hint/.gitignore
new file mode 100644
index 000000000000..d697b034a3a8
--- /dev/null
+++ b/tools/testing/selftests/thermal/intel/workload_hint/.gitignore
@@ -0,0 +1 @@
+workload_hint_test
--
2.39.2
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/4] selftests: add missing gitignore files and include generated objects
2024-01-01 0:41 [PATCH 0/4] selftests: add missing gitignore files and include generated objects Javier Carrasco
` (3 preceding siblings ...)
2024-01-01 0:41 ` [PATCH 4/4] selftests: thermal: intel: workload_hint: " Javier Carrasco
@ 2024-01-26 9:30 ` Javier Carrasco
4 siblings, 0 replies; 6+ messages in thread
From: Javier Carrasco @ 2024-01-26 9:30 UTC (permalink / raw)
To: Shuah Khan; +Cc: linux-kselftest, linux-kernel
On 01.01.24 01:41, Javier Carrasco wrote:
> This series aims to keep the git status clean after building the
> selftests by adding some missing .gitignore files and object inclusion
> in existing .gitignore files. This is one of the requirements listed in
> the selftests documentation for new tests, but it is not always followed
> as desired.
>
> After adding these .gitignore files and including the generated objects,
> the working tree appears clean again.
>
> Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
> ---
> Javier Carrasco (4):
> selftests: netfilter: add sctp_collision to gitignore
> selftests: uevent: add missing gitignore
> selftests: thermal: intel: power_floor: add missing gitignore
> selftests: thermal: intel: workload_hint: add missing gitignore
>
> tools/testing/selftests/netfilter/.gitignore | 1 +
> tools/testing/selftests/thermal/intel/power_floor/.gitignore | 1 +
> tools/testing/selftests/thermal/intel/workload_hint/.gitignore | 1 +
> tools/testing/selftests/uevent/.gitignore | 1 +
> 4 files changed, 4 insertions(+)
> ---
> base-commit: 610a9b8f49fbcf1100716370d3b5f6f884a2835a
> change-id: 20240101-selftest_gitignore-7da2c503766e
>
> Best regards,
Gentle ping.
Best regards,
Javier Carrasco
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-01-26 9:30 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-01 0:41 [PATCH 0/4] selftests: add missing gitignore files and include generated objects Javier Carrasco
2024-01-01 0:41 ` [PATCH 1/4] selftests: netfilter: add sctp_collision to gitignore Javier Carrasco
2024-01-01 0:41 ` [PATCH 2/4] selftests: uevent: add missing gitignore Javier Carrasco
2024-01-01 0:41 ` [PATCH 3/4] selftests: thermal: intel: power_floor: " Javier Carrasco
2024-01-01 0:41 ` [PATCH 4/4] selftests: thermal: intel: workload_hint: " Javier Carrasco
2024-01-26 9:30 ` [PATCH 0/4] selftests: add missing gitignore files and include generated objects Javier Carrasco
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®