• Home
Name Date Size #Lines LOC

..--

templates/12-May-2024-398226

CMakeLists.txtD12-May-20242.1 KiB5041

README.mdD12-May-20241.9 KiB4742

non_testable.yamlD12-May-20244.2 KiB138110

spec.rbD12-May-20249.7 KiB297240

spectrac.rbD12-May-20243.5 KiB9063

README.md

1# Run Spec Coverage Tool
2
3The tool reads isa.yaml spec file and the provided set of test files, computes the coverage and outputs a bunch of coverage reports.
4
5```
6spectrac -r path_to_summary_yaml_file \
7    -d tests_directory \
8    -g glob_to_select_tests_files_in_tests_directory \
9   [-g more_glob_to_select_tests_files_in_the_same_tests_directory [-g ..] ] \
10    -s path_to_isa_yaml_file \
11    -n path_to_nontestable_yaml_file \
12    -u path_to_output_notcovered_yaml_file \
13    -U path_to_output_notcovered_markdown_file \
14    -o path_to_output_yaml_file_with_irrelevant_tests \
15    -O path_to_output_markdown_file_with_irrelevant_tests \
16    -f path_to_output_yaml_file_with_coverage_data \
17    -F path_to_output_markdown_file_with_coverage_data
18```
19
20Options:
21```
22--testdir (-d) - directory with tests, required
23--testglob (-g) - glob for selecting test files in tests directory ("**/*.pa" for example), required
24--spec (-s) - ISA spec file, required
25--non-testable (-n) - yaml file with non-testable assertions
26--full (-f) - output the full spec in yaml format with additional fields showing the coverage data (mark assertions as covered/not-covered/non-testable, provide coverage metric for each group)
27--full_md (-F) - same as --full, but in markdown format
28--uncovered (-u) - output yaml document listing the spec areas not covered by tests
29--uncovered_md (-U) - same as --uncovered, but in markdown format
30--orphaned (-o) - output list of test files that found not relevant to the current spec (the assertions in test file aren't found in the spec)
31--orphaned_md (-O) - same as --orphaned, but in markdown format
32--report (-r) - output the test coverage summary report in yaml
33```
34
35Example:
36```
37spectrac -r ~/panda/summary.yaml \
38    -d ~/panda/tests \
39    -g "cts-assembly/*.pa" \
40    -g "cts-generator/**/*.pa" \
41    -s ~/panda/isa/isa.yaml \
42    -n ~/panda/isa/nontestable.yaml \
43    -u notcovered.yaml \
44    -o lost.txt \
45    -f full_spec.yaml
46```
47