summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAnanth N Mavinakayanahalli <ananth@in.ibm.com>2008-02-11 16:15:46 +0530
committerSam Ravnborg <sam@ravnborg.org>2008-02-12 23:29:18 +0100
commitd9a8a7e45430a895d255fa81b6c242172930c76e (patch)
tree8392dfb5fc72bac8d25f627e79cd60e85374ebd0 /tests
parent96b5a46e2a72dc1829370c87053e0cd558d58bc0 (diff)
Create 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
+#