Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1271283 > unrolled thread
| Started by | Bamvor Jian Zhang <bamvor.zhangjian@linaro.org> |
|---|---|
| First post | 2015-11-17 15:40 +0100 |
| Last post | 2015-11-23 21:40 +0100 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH V2 0/2] Create specific kconfig for kselftest Bamvor Jian Zhang <bamvor.zhangjian@linaro.org> - 2015-11-17 15:40 +0100
[PATCH V2 2/2] scripts/kconfig/Makefile: add kselftest-mergeconfig Bamvor Jian Zhang <bamvor.zhangjian@linaro.org> - 2015-11-17 15:40 +0100
Re: [PATCH V2 0/2] Create specific kconfig for kselftest Shuah Khan <shuahkh@osg.samsung.com> - 2015-11-23 21:40 +0100
| From | Bamvor Jian Zhang <bamvor.zhangjian@linaro.org> |
|---|---|
| Date | 2015-11-17 15:40 +0100 |
| Subject | [PATCH V2 0/2] Create specific kconfig for kselftest |
| Message-ID | <qvPAl-6eh-13@gated-at.bofh.it> |
There is a discussion about improving the usability of kselftest by
creating test-specific kconfig in recent kernel Summit. Furthormore,
there are different approaches to do it:
1) keep test-specific kconfig fragments inside each selftest so that
merge_configs.sh could build up a kernel that can test the specific
or all feature(s).
2) In the main menu, have an additional option/flag for each feature
that should be enabled when ksefltests are wanted. Similar to the
CONFIG_COMPILE_TEST flag.
Patch 1/2: do option 1. Hope it is a good start for discussion.
Patch 2/2: add config option(kselftest-mergeconfig) in make file as a
helper to merge all the test config dependecies to .config.
Changes since v1[1]:
1. Add kselftest-mergeconfig in scripts/kconfig/Makefile according
to the suggestion from Michael.
[1] http://www.spinics.net/lists/linux-api/msg15533.html
Bamvor Jian Zhang (2):
selftests: create test-specific kconfig fragments
scripts/kconfig/Makefile: add kselftest-mergeconfig
scripts/kconfig/Makefile | 9 +++++++++
tools/testing/selftests/cpu-hotplug/config | 2 ++
tools/testing/selftests/firmware/config | 1 +
tools/testing/selftests/ftrace/config | 1 +
tools/testing/selftests/ipc/config | 2 ++
tools/testing/selftests/memory-hotplug/config | 4 ++++
tools/testing/selftests/mount/config | 2 ++
tools/testing/selftests/net/config | 3 +++
tools/testing/selftests/pstore/config | 4 ++++
tools/testing/selftests/seccomp/config | 2 ++
tools/testing/selftests/static_keys/config | 1 +
tools/testing/selftests/user/config | 1 +
tools/testing/selftests/vm/config | 1 +
tools/testing/selftests/zram/config | 2 ++
14 files changed, 35 insertions(+)
create mode 100644 tools/testing/selftests/cpu-hotplug/config
create mode 100644 tools/testing/selftests/firmware/config
create mode 100644 tools/testing/selftests/ftrace/config
create mode 100644 tools/testing/selftests/ipc/config
create mode 100644 tools/testing/selftests/memory-hotplug/config
create mode 100644 tools/testing/selftests/mount/config
create mode 100644 tools/testing/selftests/net/config
create mode 100644 tools/testing/selftests/pstore/config
create mode 100644 tools/testing/selftests/seccomp/config
create mode 100644 tools/testing/selftests/static_keys/config
create mode 100644 tools/testing/selftests/user/config
create mode 100644 tools/testing/selftests/vm/config
create mode 100644 tools/testing/selftests/zram/config
--
1.8.4.5
--
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 | Bamvor Jian Zhang <bamvor.zhangjian@linaro.org> |
|---|---|
| Date | 2015-11-17 15:40 +0100 |
| Subject | [PATCH V2 2/2] scripts/kconfig/Makefile: add kselftest-mergeconfig |
| Message-ID | <qvPAl-6eh-15@gated-at.bofh.it> |
| In reply to | #1271283 |
Add kselftest-mergeconfig to enable the dependencies of kernel config for all the kselftest testcases. User could call it after create the kernel configuration(.config), eg: $ make kselftest-mergeconfig Signed-off-by: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org> --- scripts/kconfig/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index d79cba4..5896092 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -126,6 +126,14 @@ PHONY += tinyconfig tinyconfig: $(Q)$(MAKE) -f $(srctree)/Makefile allnoconfig tiny.config +PHONY += kselftest-mergeconfig +kselftest-mergeconfig: $(obj)/conf + $(if $(wildcard $(srctree)/.config),, $(error No .config exists, config your kernel first!)) + $(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh \ + -m -O $(objtree) $(srctree)/.config \ + $(srctree)/tools/testing/selftests/*/config + +$(Q)$(MAKE) -f $(srctree)/Makefile olddefconfig + # Help text used by make help help: @echo ' config - Update current config utilising a line-oriented program' @@ -151,6 +159,7 @@ help: @echo ' kvmconfig - Enable additional options for kvm guest kernel support' @echo ' xenconfig - Enable additional options for xen dom0 and guest kernel support' @echo ' tinyconfig - Configure the tiniest possible kernel' + @echo ' kselftest-mergeconfig - Merge all the config dependencies of kselftest to .config' # lxdialog stuff check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh -- 1.8.4.5 -- 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-11-23 21:40 +0100 |
| Message-ID | <qy641-6NZ-13@gated-at.bofh.it> |
| In reply to | #1271283 |
On 11/17/2015 07:34 AM, Bamvor Jian Zhang wrote: > There is a discussion about improving the usability of kselftest by > creating test-specific kconfig in recent kernel Summit. Furthormore, > there are different approaches to do it: > > 1) keep test-specific kconfig fragments inside each selftest so that > merge_configs.sh could build up a kernel that can test the specific > or all feature(s). > > 2) In the main menu, have an additional option/flag for each feature > that should be enabled when ksefltests are wanted. Similar to the > CONFIG_COMPILE_TEST flag. > > Patch 1/2: do option 1. Hope it is a good start for discussion. > > Patch 2/2: add config option(kselftest-mergeconfig) in make file as a > helper to merge all the test config dependecies to .config. > > Changes since v1[1]: > 1. Add kselftest-mergeconfig in scripts/kconfig/Makefile according > to the suggestion from Michael. > > [1] http://www.spinics.net/lists/linux-api/msg15533.html > > Bamvor Jian Zhang (2): > selftests: create test-specific kconfig fragments > scripts/kconfig/Makefile: add kselftest-mergeconfig > Both patches applied to linux-kseltftest next for 4.5-rc1 thanks, -- 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