summaryrefslogtreecommitdiffstats
path: root/tester/covoar/Explanations.cc (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-12-07Explanations.cc: Fix formattingRyan Long1-25/+26
2021-12-07Explanations: Convert to C++Ryan Long1-5/+5
2021-08-03Remove app_common and all references to itRyan Long1-1/+0
- Removed the includes of app_common.h - Removed app_common references in build infrastructure - Removed app_common.cc and app_common.h
2021-08-03Remove input buffer global variablesRyan Long1-11/+9
- Removed input buffers from app_common and added them as a local variable to functions where inputBuffer was being used - Added #define for MAX_LINE_LENGTH in files where it is used - Changed Explanations::load to use a string instead of a C-string
2021-06-28covoar/Explanations.cc: Remove unnecessary newline stripAlex White1-2/+0
This corrects an issue where the starting line numbers of explanations had their last digit removed. This was caused by code left over for handling C file IO where the newline was included in the buffer.
2021-06-28covoar/Explanations.cc: Handle newline at end of fileAlex White1-13/+11
2021-06-09Explanations.cc: Convert to c++ file handlingRyan Long1-28/+17
2021-06-04Explanations.cc: Fix resource leaksRyan Long1-7/+11
CID 1399608: Resource leak in load(). CID 1399611: Resource leak in load(). Closes #4417
2021-04-07covoar: Fix NULL check of wrong variable (CID #1399602)Alex White1-2/+2
CID 1399602: Dereference null return value in Explanations::writeNotFound(). In Explanations::writeNotFound() there were two NULL checks of the `fileName` variable where only one is needed. The second check has been changed to a NULL check of `notFoundFile` to match the original intent. Closes #4377
2021-04-07covoar: Use range-based for loops in ReportsBaseAlex White1-1/+1
Some of the loops in the ReportsBase::Write* methods contained both regular and range-based for loops. This changes them to use only range- based for loops. Closes #4374
2018-06-18tester/covoar: Remove all exit() calls and throw an rld::error exception.Chris Johns1-51/+36
Add a suitable catch to covoar's main.
2014-06-18covoar: Merger the covoar source from rtems-testing.git.Chris Johns1-0/+191
Use waf to build covoar.