Home | History | Annotate | Download | only in tools

Lines Matching defs:Test

43       '''This tool runs each test reported by $CCTEST --list (and filtered as
44 specified). A summary will be printed, and detailed test output will be
70 # A class representing an individual test.
71 class Test:
82 # Run the test.
83 # Use a thread to be able to control the test.
95 # Get the output and return status of the test.
121 # Scan matching tests and return a test manifest.
130 return map(Test, names)
146 for test in manifest:
147 # Update the progress counter with the name of the test we're about to run.
148 UpdateProgress(start_time, passed, failed, count, args.verbose, test.name)
149 retcode = test.Run()
161 # $ROOT/tools/test.py