selftests: create test-specific kconfig fragments
authorBamvor Jian Zhang <bamvor.zhangjian@linaro.org>
Fri, 8 Jan 2016 07:27:33 +0000 (15:27 +0800)
committerShuah Khan <shuahkh@osg.samsung.com>
Thu, 25 Feb 2016 16:47:52 +0000 (09:47 -0700)
Create the config file in each directory of testcase which need
more kernel configuration than the default defconfig. User could
use these configs with merge_config.sh script:

Enable config for specific testcase:
(export ARCH=xxx #for cross compiling)
./scripts/kconfig/merge_config.sh .config \
tools/testing/selftests/xxx/config

Enable configs for all testcases:
(export ARCH=xxx #for cross compiling)
./scripts/kconfig/merge_config.sh .config \
tools/testing/selftests/*/config

Signed-off-by: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org>
Reviewed-by: Shuah Khan <shuahkh@osg.samsung.com>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
13 files changed:
tools/testing/selftests/cpu-hotplug/config [new file with mode: 0644]
tools/testing/selftests/firmware/config [new file with mode: 0644]
tools/testing/selftests/ftrace/config [new file with mode: 0644]
tools/testing/selftests/ipc/config [new file with mode: 0644]
tools/testing/selftests/memory-hotplug/config [new file with mode: 0644]
tools/testing/selftests/mount/config [new file with mode: 0644]
tools/testing/selftests/net/config [new file with mode: 0644]
tools/testing/selftests/pstore/config [new file with mode: 0644]
tools/testing/selftests/seccomp/config [new file with mode: 0644]
tools/testing/selftests/static_keys/config [new file with mode: 0644]
tools/testing/selftests/user/config [new file with mode: 0644]
tools/testing/selftests/vm/config [new file with mode: 0644]
tools/testing/selftests/zram/config [new file with mode: 0644]

diff --git a/tools/testing/selftests/cpu-hotplug/config b/tools/testing/selftests/cpu-hotplug/config
new file mode 100644 (file)
index 0000000..e6ab090
--- /dev/null
@@ -0,0 +1,2 @@
+CONFIG_NOTIFIER_ERROR_INJECTION=y
+CONFIG_CPU_NOTIFIER_ERROR_INJECT=m
diff --git a/tools/testing/selftests/firmware/config b/tools/testing/selftests/firmware/config
new file mode 100644 (file)
index 0000000..c8137f7
--- /dev/null
@@ -0,0 +1 @@
+CONFIG_TEST_FIRMWARE=y
diff --git a/tools/testing/selftests/ftrace/config b/tools/testing/selftests/ftrace/config
new file mode 100644 (file)
index 0000000..ef82146
--- /dev/null
@@ -0,0 +1 @@
+CONFIG_FTRACE=y
diff --git a/tools/testing/selftests/ipc/config b/tools/testing/selftests/ipc/config
new file mode 100644 (file)
index 0000000..0702447
--- /dev/null
@@ -0,0 +1,2 @@
+CONFIG_EXPERT=y
+CONFIG_CHECKPOINT_RESTORE=y
diff --git a/tools/testing/selftests/memory-hotplug/config b/tools/testing/selftests/memory-hotplug/config
new file mode 100644 (file)
index 0000000..2fde301
--- /dev/null
@@ -0,0 +1,4 @@
+CONFIG_MEMORY_HOTPLUG=y
+CONFIG_MEMORY_HOTPLUG_SPARSE=y
+CONFIG_NOTIFIER_ERROR_INJECTION=y
+CONFIG_MEMORY_NOTIFIER_ERROR_INJECT=m
diff --git a/tools/testing/selftests/mount/config b/tools/testing/selftests/mount/config
new file mode 100644 (file)
index 0000000..b5d881e
--- /dev/null
@@ -0,0 +1,2 @@
+CONFIG_USER_NS=y
+CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
diff --git a/tools/testing/selftests/net/config b/tools/testing/selftests/net/config
new file mode 100644 (file)
index 0000000..e57b4ac
--- /dev/null
@@ -0,0 +1,3 @@
+CONFIG_USER_NS=y
+CONFIG_BPF_SYSCALL=y
+CONFIG_TEST_BPF=m
diff --git a/tools/testing/selftests/pstore/config b/tools/testing/selftests/pstore/config
new file mode 100644 (file)
index 0000000..6a8e5a9
--- /dev/null
@@ -0,0 +1,4 @@
+CONFIG_MISC_FILESYSTEMS=y
+CONFIG_PSTORE=y
+CONFIG_PSTORE_PMSG=y
+CONFIG_PSTORE_CONSOLE=y
diff --git a/tools/testing/selftests/seccomp/config b/tools/testing/selftests/seccomp/config
new file mode 100644 (file)
index 0000000..db1e11b
--- /dev/null
@@ -0,0 +1,2 @@
+CONFIG_SECCOMP=y
+CONFIG_SECCOMP_FILTER=y
diff --git a/tools/testing/selftests/static_keys/config b/tools/testing/selftests/static_keys/config
new file mode 100644 (file)
index 0000000..d538fb7
--- /dev/null
@@ -0,0 +1 @@
+CONFIG_TEST_STATIC_KEYS=m
diff --git a/tools/testing/selftests/user/config b/tools/testing/selftests/user/config
new file mode 100644 (file)
index 0000000..784ed84
--- /dev/null
@@ -0,0 +1 @@
+CONFIG_TEST_USER_COPY=m
diff --git a/tools/testing/selftests/vm/config b/tools/testing/selftests/vm/config
new file mode 100644 (file)
index 0000000..698c7ed
--- /dev/null
@@ -0,0 +1 @@
+CONFIG_USERFAULTFD=y
diff --git a/tools/testing/selftests/zram/config b/tools/testing/selftests/zram/config
new file mode 100644 (file)
index 0000000..e0cc47e
--- /dev/null
@@ -0,0 +1,2 @@
+CONFIG_ZSMALLOC=y
+CONFIG_ZRAM=m
This page took 0.02805 seconds and 5 git commands to generate.