| 753 | } |
| 754 | |
| 755 | void Internal::Test_Error(char* error) |
| 756 | { |
| 757 | if (gTestBreakOnFailure) |
| 758 | { |
| 759 | SETUP_ERROR(error, 3); |
| 760 | BF_DEBUG_BREAK(); |
| 761 | } |
| 762 | |
| 763 | if (gClientPipe != NULL) |
| 764 | { |
| 765 | Beefy::String str = ":TestFail\t"; |
| 766 | str += error; |
| 767 | str.Replace('\n', '\r'); |
| 768 | str += "\n"; |
| 769 | TestString(str); |
| 770 | } |
| 771 | else |
| 772 | Internal_FatalError(error); |
| 773 | } |
| 774 | |
| 775 | void Internal::Test_Write(char* strPtr) |
| 776 | { |
nothing calls this directly
no test coverage detected