Return true if the given value is true (case-insensitive) or 1.
| 234 | |
| 235 | // Return true if the given value is true (case-insensitive) or 1. |
| 236 | static bool IsTrue(const string& value) { |
| 237 | return iequals(value, "true") || iequals(value, "1"); |
| 238 | } |
| 239 | |
| 240 | static Status VerifyExecNodeDebugAction(const TDebugOptions& debug_options) { |
| 241 | if (debug_options.action == TDebugAction::DELAY) { |
no test coverage detected