summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAnanth N Mavinakayanahalli <ananth@in.ibm.com>2008-07-28 23:27:55 +0530
committerSam Ravnborg <sam@ravnborg.org>2008-07-28 21:40:00 +0200
commita4e7e33e50550d0f8b8f87487014527422a787af (patch)
tree6f4ecc66b78df21c9abd220fe52b3054c79b7ca3 /tests
parentf934fb19ef34730263e6afc01e8ec27a8a71470f (diff)
Add tests/ directory
Create a toplevel tests/ directory to house in-kernel subsystem specific tests. Thanks to Sam Ravnborg for the Makefile corrections. Signed-off-by: Ananth N Mavinakayanahalli <ananth@in.ibm.com> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/Kconfig10
-rw-r--r--tests/Makefile3
2 files changed, 13 insertions, 0 deletions
diff --git a/tests/Kconfig b/tests/Kconfig
new file mode 100644
index 000000000000..a23e94c5580d
--- /dev/null
+++ b/tests/Kconfig
@@ -0,0 +1,10 @@
+# tests/Kconfig
+
+menuconfig KERNEL_TESTS
+ bool "Kernel subsystem tests"
+ help
+ You can build kernel subsystem specific tests.
+
+if KERNEL_TESTS
+
+endif # KERNEL_TESTS
diff --git a/tests/Makefile b/tests/Makefile
new file mode 100644
index 000000000000..64ce97118503
--- /dev/null
+++ b/tests/Makefile
@@ -0,0 +1,3 @@
+#
+# Makefile for kernel subsystem specific tests
+#