diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2015-06-15 19:24:58 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2015-06-15 19:31:21 +0200 |
| commit | 5ba9656f7796d2a4c89203e889684626ce83e705 (patch) | |
| tree | 487a12ecf177c8082ff9649882368c48b7207f78 | |
| parent | c943306c099075ba992300715968052a15ddc3e7 (diff) | |
Parsing isn't terribly slow.
A scientific '$ top -d 0.01' experiment shows it's just waiting around
for the vast majority of those tests.
| -rw-r--r-- | testsuite.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/testsuite.py b/testsuite.py index b1cd24f..a4c9cb3 100644 --- a/testsuite.py +++ b/testsuite.py @@ -1910,8 +1910,7 @@ def test_all_no(conf): """ Test if our examples/allnoconfig.py script generates the same .config as 'make allnoconfig' for each architecture. Runs the script via - 'make scriptconfig' and needs to reparse the configurations, so kinda slow - even in speedy mode.""" + '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") @@ -1925,8 +1924,7 @@ def test_all_no_simpler(conf): """ Test if our examples/allnoconfig_simpler.py script generates the same .config as 'make allnoconfig' for each architecture. Runs the script via - 'make scriptconfig' and needs to reparse the configurations, so kinda slow - even in speedy mode.""" + '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") @@ -1940,8 +1938,7 @@ def test_all_yes(conf): """ Test if our examples/allyesconfig.py script generates the same .config as 'make allyesconfig' for each architecture. Runs the script via - 'make scriptconfig' and needs to reparse the configurations, so kinda slow - even in speedy mode.""" + 'make scriptconfig', so kinda slow even in speedy mode.""" # TODO: Support speedy mode for running the script shell("make scriptconfig SCRIPT=Kconfiglib/examples/allyesconfig.py") |
