diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2018-05-27 20:37:59 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2018-05-27 20:37:59 +0200 |
| commit | 4c4f184a3a648b8cb748ab35159a09ccd06b2ff7 (patch) | |
| tree | 0a221ad8525a590ade6f7fe7329869797dab7307 /testsuite.py | |
| parent | 81a0b2ede3f59784d271a60701291e2a0dfc2a7d (diff) | |
allnoconfig: Move from examples/ to root
Put to-be-packaged stuff in the root.
Use allnoconfig_simpler.py, and rename allnoconfig.py to
allnoconfig_walk.py and keep it as an example.
Diffstat (limited to 'testsuite.py')
| -rw-r--r-- | testsuite.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/testsuite.py b/testsuite.py index f157797..29d5860 100644 --- a/testsuite.py +++ b/testsuite.py @@ -1903,7 +1903,7 @@ def run_compatibility_tests(): #test_min_config, test_sanity, test_all_no, - test_all_no_simpler, + test_all_no_walk, test_all_yes) for test_fn in test_fns: @@ -1947,12 +1947,12 @@ def all_arch_srcarch_kconfigs(): def test_all_no(conf, arch, srcarch): """ - Verify that our examples/allnoconfig.py script generates the same .config - as 'make allnoconfig', for each architecture. Runs the script via - 'make scriptconfig', so kinda slow even in speedy mode. + Verify that allnoconfig.py script generates the same .config as 'make + allnoconfig', for each architecture. Runs the script via 'make + scriptconfig', so kinda slow even in speedy mode. """ # TODO: Support speedy mode for running the script - shell("make scriptconfig SCRIPT=Kconfiglib/examples/allnoconfig.py " + shell("make scriptconfig SCRIPT=Kconfiglib/allnoconfig.py " "PYTHONCMD='{}'".format(sys.executable)) shell("mv .config ._config") if speedy: @@ -1962,14 +1962,14 @@ def test_all_no(conf, arch, srcarch): compare_configs(arch) -def test_all_no_simpler(conf, arch, srcarch): +def test_all_no_walk(conf, arch, srcarch): """ - Verify that our examples/allnoconfig_simpler.py script generates the same + Verify that our examples/allnoconfig_walk.py script generates the same .config as 'make allnoconfig', for each architecture. Runs the script via 'make scriptconfig', so kinda slow even in speedy mode. """ # TODO: Support speedy mode for running the script - shell("make scriptconfig SCRIPT=Kconfiglib/examples/allnoconfig_simpler.py " + shell("make scriptconfig SCRIPT=Kconfiglib/examples/allnoconfig_walk.py " "PYTHONCMD='{}'".format(sys.executable)) shell("mv .config ._config") if speedy: |
