ASIC/FPGA Design and Verification Out Source Services
The regression report is better seen with vim. Use color option of vi to color in green tests that pass okay and in red failing ones.
The vim coloring is done in two steps:
- First creat syntax file with the following content:
syntax match pass /.* P .*/
hi pass guibg=white guifg=green
syntax match fail /.* F .*/
hi fail guibg=white guifg=red
- Tell vim to color files, which are named reg_rep.txt:
au BufRead,BufNewFile reg_rep.txt so ~/Junk/CPD/reg_rep.vim
Then if all is green you can be happy:
|