Commit 14ee5cfd authored by SeongJae Park's avatar SeongJae Park Committed by Shuah Khan

kunit: Rename 'kunitconfig' to '.kunitconfig'

This commit renames 'kunitconfig' to '.kunitconfig' so that it can be
automatically ignored by git and do not disturb people who want to type
'kernel/' by pressing only the 'k' and then 'tab' key.
Signed-off-by: default avatarSeongJae Park <sjpark@amazon.de>
Reviewed-by: default avatarBrendan Higgins <brendanhiggins@google.com>
Tested-by: default avatarBrendan Higgins <brendanhiggins@google.com>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent 609952c2
...@@ -24,18 +24,16 @@ The wrapper can be run with: ...@@ -24,18 +24,16 @@ The wrapper can be run with:
For more information on this wrapper (also called kunit_tool) checkout the For more information on this wrapper (also called kunit_tool) checkout the
:doc:`kunit-tool` page. :doc:`kunit-tool` page.
Creating a kunitconfig Creating a .kunitconfig
====================== =======================
The Python script is a thin wrapper around Kbuild. As such, it needs to be The Python script is a thin wrapper around Kbuild. As such, it needs to be
configured with a ``kunitconfig`` file. This file essentially contains the configured with a ``.kunitconfig`` file. This file essentially contains the
regular Kernel config, with the specific test targets as well. regular Kernel config, with the specific test targets as well.
.. code-block:: bash .. code-block:: bash
cd $PATH_TO_LINUX_REPO cd $PATH_TO_LINUX_REPO
cp arch/um/configs/kunit_defconfig kunitconfig cp arch/um/configs/kunit_defconfig .kunitconfig
You may want to add kunitconfig to your local gitignore.
Verifying KUnit Works Verifying KUnit Works
--------------------- ---------------------
...@@ -150,7 +148,7 @@ and the following to ``drivers/misc/Makefile``: ...@@ -150,7 +148,7 @@ and the following to ``drivers/misc/Makefile``:
obj-$(CONFIG_MISC_EXAMPLE_TEST) += example-test.o obj-$(CONFIG_MISC_EXAMPLE_TEST) += example-test.o
Now add it to your ``kunitconfig``: Now add it to your ``.kunitconfig``:
.. code-block:: none .. code-block:: none
......
...@@ -108,7 +108,7 @@ def main(argv, linux=None): ...@@ -108,7 +108,7 @@ def main(argv, linux=None):
type=str, default='', metavar='build_dir') type=str, default='', metavar='build_dir')
run_parser.add_argument('--defconfig', run_parser.add_argument('--defconfig',
help='Uses a default kunitconfig.', help='Uses a default .kunitconfig.',
action='store_true') action='store_true')
cli_args = parser.parse_args(argv) cli_args = parser.parse_args(argv)
......
...@@ -14,7 +14,7 @@ import os ...@@ -14,7 +14,7 @@ import os
import kunit_config import kunit_config
KCONFIG_PATH = '.config' KCONFIG_PATH = '.config'
kunitconfig_path = 'kunitconfig' kunitconfig_path = '.kunitconfig'
class ConfigError(Exception): class ConfigError(Exception):
"""Represents an error trying to configure the Linux kernel.""" """Represents an error trying to configure the Linux kernel."""
...@@ -111,7 +111,7 @@ class LinuxSourceTree(object): ...@@ -111,7 +111,7 @@ class LinuxSourceTree(object):
return True return True
def build_reconfig(self, build_dir): def build_reconfig(self, build_dir):
"""Creates a new .config if it is not a subset of the kunitconfig.""" """Creates a new .config if it is not a subset of the .kunitconfig."""
kconfig_path = get_kconfig_path(build_dir) kconfig_path = get_kconfig_path(build_dir)
if os.path.exists(kconfig_path): if os.path.exists(kconfig_path):
existing_kconfig = kunit_config.Kconfig() existing_kconfig = kunit_config.Kconfig()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment