summaryrefslogtreecommitdiffstats
path: root/tester/covoar/Explanations.cc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Explanations.cc: Fix formattingRyan Long2021-12-071-25/+26
|
* Explanations: Convert to C++Ryan Long2021-12-071-5/+5
|
* Remove app_common and all references to itRyan Long2021-08-031-1/+0
| | | | | | - Removed the includes of app_common.h - Removed app_common references in build infrastructure - Removed app_common.cc and app_common.h
* Remove input buffer global variablesRyan Long2021-08-031-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
* covoar/Explanations.cc: Remove unnecessary newline stripAlex White2021-06-281-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.
* covoar/Explanations.cc: Handle newline at end of fileAlex White2021-06-281-13/+11
|
* Explanations.cc: Convert to c++ file handlingRyan Long2021-06-091-28/+17
|
* Explanations.cc: Fix resource leaksRyan Long2021-06-041-7/+11
| | | | | | | CID 1399608: Resource leak in load(). CID 1399611: Resource leak in load(). Closes #4417
* covoar: Fix NULL check of wrong variable (CID #1399602)Alex White2021-04-071-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
* covoar: Use range-based for loops in ReportsBaseAlex White2021-04-071-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
* tester/covoar: Remove all exit() calls and throw an rld::error exception.Chris Johns2018-06-181-51/+36
| | | | Add a suitable catch to covoar's main.
* covoar: Merger the covoar source from rtems-testing.git.Chris Johns2014-06-181-0/+191
Use waf to build covoar.