File: TODO.txt

package info (click to toggle)
linux 6.19.8-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,760,000 kB
  • sloc: ansic: 27,013,505; asm: 273,421; sh: 151,386; python: 81,301; makefile: 58,566; perl: 34,311; xml: 21,064; cpp: 5,986; yacc: 4,841; lex: 2,901; awk: 1,707; sed: 30; ruby: 25
file content (31 lines) | stat: -rw-r--r-- 1,214 bytes parent folder | download | duplicates (51)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
tc Testing Suite To-Do list:

- Determine what tc features are supported in the kernel. If features are not
  present, prevent the related categories from running.

- Add support for multiple versions of tc to run successively

- Improve error messages when tdc aborts its run.  Partially done - still
  need to better handle problems in pre- and post-suite.

- Use python logger module for debug/verbose output

- Allow tdc to write its results to file.
  Maybe use python logger module for this too.

- A better implementation of the "hooks".  Currently, every plugin
  will attempt to run a function at every hook point.  Could be
  changed so that plugin __init__ methods will register functions to
  be run in the various predefined times.  Then if a plugin does not
  require action at a specific point, no penalty will be paid for
  trying to run a function that will do nothing.

- Proper exception handling - make an exception class and use it

- a TestCase class, for easier testcase handling, searching, comparison

- a TestSuite class
  and a way to configure a test suite,
  to automate running multiple "test suites" with different requirements

- super simple test case example using ls, touch, etc