Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1241934 > unrolled thread
| Started by | Wang Long <long.wanglong@huawei.com> |
|---|---|
| First post | 2015-10-08 04:50 +0200 |
| Last post | 2015-10-08 15:30 +0200 |
| Articles | 4 — 4 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v2] kselftest: add kselftest-clean rule Wang Long <long.wanglong@huawei.com> - 2015-10-08 04:50 +0200
Re: [PATCH v2] kselftest: add kselftest-clean rule Michael Ellerman <mpe@ellerman.id.au> - 2015-10-08 06:00 +0200
Re: [PATCH v2] kselftest: add kselftest-clean rule Michal Marek <mmarek@suse.cz> - 2015-10-08 14:30 +0200
Re: [PATCH v2] kselftest: add kselftest-clean rule Shuah Khan <shuahkh@osg.samsung.com> - 2015-10-08 15:30 +0200
| From | Wang Long <long.wanglong@huawei.com> |
|---|---|
| Date | 2015-10-08 04:50 +0200 |
| Subject | [PATCH v2] kselftest: add kselftest-clean rule |
| Message-ID | <qh9rj-7aQ-1@gated-at.bofh.it> |
We use
$make TARGETS="size timers" kselftest
to build and run selftests. but there is no rule
for us to clean the kselftest generated files.
This patch add the rules, for example:
$ make TARGETS="size timers" kselftest-clean
can clean all kselftest generated files.
Signed-off-by: Wang Long <long.wanglong@huawei.com>
---
Makefile | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/Makefile b/Makefile
index 1d341eb..3edd7b3 100644
--- a/Makefile
+++ b/Makefile
@@ -1075,6 +1075,9 @@ PHONY += kselftest
kselftest:
$(Q)$(MAKE) -C tools/testing/selftests run_tests
+kselftest-clean:
+ $(Q)$(MAKE) -C tools/testing/selftests clean
+
# ---------------------------------------------------------------------------
# Modules
@@ -1282,6 +1285,7 @@ help:
@echo ' kselftest - Build and run kernel selftest (run as root)'
@echo ' Build, install, and boot kernel before'
@echo ' running kselftest on it'
+ @echo ' kselftest-clean - Remove all generated kselftest files'
@echo ''
@echo 'Kernel packaging:'
@$(MAKE) $(build)=$(package-dir) help
--
1.8.3.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Michael Ellerman <mpe@ellerman.id.au> |
|---|---|
| Date | 2015-10-08 06:00 +0200 |
| Message-ID | <qhax4-en-1@gated-at.bofh.it> |
| In reply to | #1241934 |
On Thu, 2015-10-08 at 02:41 +0000, Wang Long wrote: > We use > > $make TARGETS="size timers" kselftest > > to build and run selftests. but there is no rule > for us to clean the kselftest generated files. > > This patch add the rules, for example: > > $ make TARGETS="size timers" kselftest-clean > > can clean all kselftest generated files. > > Signed-off-by: Wang Long <long.wanglong@huawei.com> > --- > Makefile | 4 ++++ > 1 file changed, 4 insertions(+) Thanks that's much neater. Acked-by: Michael Ellerman <mpe@ellerman.id.au> cheers -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Michal Marek <mmarek@suse.cz> |
|---|---|
| Date | 2015-10-08 14:30 +0200 |
| Message-ID | <qhiuC-3nl-5@gated-at.bofh.it> |
| In reply to | #1241952 |
On Thu, Oct 08, 2015 at 02:52:04PM +1100, Michael Ellerman wrote: > On Thu, 2015-10-08 at 02:41 +0000, Wang Long wrote: > > We use > > > > $make TARGETS="size timers" kselftest > > > > to build and run selftests. but there is no rule > > for us to clean the kselftest generated files. > > > > This patch add the rules, for example: > > > > $ make TARGETS="size timers" kselftest-clean > > > > can clean all kselftest generated files. > > > > Signed-off-by: Wang Long <long.wanglong@huawei.com> > > --- > > Makefile | 4 ++++ > > 1 file changed, 4 insertions(+) > > Thanks that's much neater. > > Acked-by: Michael Ellerman <mpe@ellerman.id.au> Applied to kbuild.git#kbuild. Michal -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Shuah Khan <shuahkh@osg.samsung.com> |
|---|---|
| Date | 2015-10-08 15:30 +0200 |
| Message-ID | <qhjqG-4LW-9@gated-at.bofh.it> |
| In reply to | #1242297 |
On 10/08/2015 06:21 AM, Michal Marek wrote: > On Thu, Oct 08, 2015 at 02:52:04PM +1100, Michael Ellerman wrote: >> On Thu, 2015-10-08 at 02:41 +0000, Wang Long wrote: >>> We use >>> >>> $make TARGETS="size timers" kselftest >>> >>> to build and run selftests. but there is no rule >>> for us to clean the kselftest generated files. >>> >>> This patch add the rules, for example: >>> >>> $ make TARGETS="size timers" kselftest-clean >>> >>> can clean all kselftest generated files. >>> >>> Signed-off-by: Wang Long <long.wanglong@huawei.com> >>> --- >>> Makefile | 4 ++++ >>> 1 file changed, 4 insertions(+) >> >> Thanks that's much neater. >> >> Acked-by: Michael Ellerman <mpe@ellerman.id.au> > > Applied to kbuild.git#kbuild. > Thanks for getting this in. -- Shuah -- Shuah Khan Sr. Linux Kernel Developer Open Source Innovation Group Samsung Research America (Silicon Valley) shuahkh@osg.samsung.com | (970) 217-8978 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web