summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-12-10Remove some semicolons.Ulf Magnusson
2012-12-10Add some is_modifiable() consistency checks.Ulf Magnusson
2012-12-10Get some menuconfig coverage.Ulf Magnusson
2012-12-10Misc. test clarification.Ulf Magnusson
2012-12-10Misc. test clarification.Ulf Magnusson
2012-12-10Add one more is_modifiable() test.Ulf Magnusson
2012-12-10Remove _Feed.is_at_end().Ulf Magnusson
Unused.
2012-12-10Clean up object relations selftest a bit.Ulf Magnusson
2012-12-10Clarify get_lower/upper_bound() test.Ulf Magnusson
2012-12-10Simplify is_modifiable() test.Ulf Magnusson
2012-12-10Add get_referenced_symbols() selftests for !.Ulf Magnusson
2012-12-10Add dependency selftests for =/!=.Ulf Magnusson
Also add tests for misc. other forms.
2012-12-10Add get_referenced_symbols() selftests for =/!=.Ulf Magnusson
2012-12-10Register refs. for symbols on the RHS of =/!=.Ulf Magnusson
Omission.
2012-12-10Copy less when searching for symbols.Ulf Magnusson
2012-12-10Do less copying of _Blocks.Ulf Magnusson
Make _parse_block/file() take an optional parameter that is a _Block to to add items to. This also cleans up the code a bit.
2012-12-10Fix outdated comment.Ulf Magnusson
2012-12-10Update references to old Linux versions.Ulf Magnusson
2012-12-10Put _make_and/or() globally.Ulf Magnusson
Preparation for later clean-up.
2012-12-10Put _get_expr_syms() globally.Ulf Magnusson
Preparation for later clean-up.
2012-12-10Simplify dependency generation and improve caching.Ulf Magnusson
- Get rid of Config.dep. Store direct dependencies in Symbol.dep instead. - Use recursive _get_dependent() calls in _get_dependent() to make best use of caching. This roughly doubles the speed of allnoconfig_simpler.py.
2012-12-09Clarify purpose of _build_dep().Ulf Magnusson
2012-12-09Remove get_sibling_items/symbols() from test suite too.Ulf Magnusson
Ops!
2012-12-09Avoid registering symbols for junk after a T_HELP token.Ulf Magnusson
2012-12-09Add note about internals.Ulf Magnusson
2012-12-09Remove get_sibling_symbols/items().Ulf Magnusson
Can easily be had with Choice.get_items(), Menu.get_symbols/items(), and get_top_level_items(), and the interface is getting a bit cluttered. Scream if you were using this. :)
2012-12-09Small formatting fix.Ulf Magnusson
2012-12-09Rename various assert_* functions to verify_*.Ulf Magnusson
2012-12-09Rename assert_true() to verify().Ulf Magnusson
2012-12-09Add selftests for get_selected_symbols().Ulf Magnusson
Also add the missing tests/Kref.
2012-12-09Add selftests for get_referenced_symbols().Ulf Magnusson
2012-12-09Make get_referenced_symbols() include symbols from ranges.Ulf Magnusson
Previously only included symbols from the condition for ranges.
2012-12-09Add note about internal APIs.Ulf Magnusson
2012-12-09Clarify _get_dependent() documentation.Ulf Magnusson
2012-12-09Motivate KERNELVERSION assignment in test suite.Ulf Magnusson
2012-12-09Spell nit.Ulf Magnusson
2012-12-09Make introduction less verbose.Ulf Magnusson
2012-12-08Spiffy up README shell commands.Ulf Magnusson
2012-12-08Fix link in README.Ulf Magnusson
2012-12-08Fix README linebreaks.Ulf Magnusson
2012-12-08Update README.Ulf Magnusson
2012-12-08Add selftests for internal object dependencies.Ulf Magnusson
2012-12-08Register dependencies from ranges.Ulf Magnusson
Oversight.
2012-12-08Avoid getting 'self' as a dependency.Ulf Magnusson
Harmless but pointless.
2012-12-08Add _get_dependent() note.Ulf Magnusson
2012-12-08Reuse cached deps from other symbols in _get_dependent().Ulf Magnusson
Speeds up allnoconfig_simpler.py by 30%.
2012-12-08Cache the list of dependent symbols.Ulf Magnusson
Will speed things up if a user value is set more than once on a symbol. Also, return the result as a list, which should be quicker to iterate through.
2012-12-08Remove warning for assigning to symbol without prompt.Ulf Magnusson
Annoying when running allnoconfig_simpler.py.
2012-12-08Add a simpler allnoconfig example.Ulf Magnusson
2012-12-08Clarify allno/yesconfig.py.Ulf Magnusson