TODO.txt 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. tc Testing Suite To-Do list:
  2. - Determine what tc features are supported in the kernel. If features are not
  3. present, prevent the related categories from running.
  4. - Add support for multiple versions of tc to run successively
  5. - Improve error messages when tdc aborts its run. Partially done - still
  6. need to better handle problems in pre- and post-suite.
  7. - Use python logger module for debug/verbose output
  8. - Allow tdc to write its results to file.
  9. Maybe use python logger module for this too.
  10. - A better implementation of the "hooks". Currently, every plugin
  11. will attempt to run a function at every hook point. Could be
  12. changed so that plugin __init__ methods will register functions to
  13. be run in the various predefined times. Then if a plugin does not
  14. require action at a specific point, no penalty will be paid for
  15. trying to run a function that will do nothing.
  16. - Proper exception handling - make an exception class and use it
  17. - a TestCase class, for easier testcase handling, searching, comparison
  18. - a TestSuite class
  19. and a way to configure a test suite,
  20. to automate running multiple "test suites" with different requirements
  21. - super simple test case example using ls, touch, etc