| 22 | |
| 23 | static bool writeBuildHelpAddendumToString(Build::Action::Type actionType, String& text) |
| 24 | { |
| 25 | GrowableBuffer<String> growable(text); |
| 26 | StringFormatOutput output(StringEncoding::Utf8, growable); |
| 27 | const bool result = Tools::detail::appendBuildActionHelpAddendum(output, actionType); |
| 28 | growable.finalize(); |
| 29 | return result; |
| 30 | } |
| 31 | |
| 32 | static bool shouldRunHeavySupportToolsTests() |
no test coverage detected