| 187 | } |
| 188 | |
| 189 | WARN_UNUSED_RESULT static inline Status DebugActionVerifyOnly(const string& debug_action){ |
| 190 | if (LIKELY(debug_action.empty())) return Status::OK(); |
| 191 | return DebugAction(debug_action, "", std::vector<string>(), true); |
| 192 | } |
| 193 | |
| 194 | /// Map of exception string to the exception throwing function which is used when |
| 195 | /// executing the EXCEPTION debug action. |
no test coverage detected