You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-07-15 01:04:37 +02:00
Add ASSERT_MSG().
Used when execution reaches an invalid location rather than an invalid condition.
This commit is contained in:
@ -31,9 +31,14 @@ Asserts are used in test code to ensure that certain conditions are true. They
|
||||
#else
|
||||
#define ASSERT_INLINE(condition)
|
||||
#endif
|
||||
|
||||
// Used when execution reaches an invalid location rather than an invalid condition
|
||||
#define ASSERT_MSG(message) \
|
||||
THROW_FMT(AssertError, message);
|
||||
#else
|
||||
#define ASSERT(condition)
|
||||
#define ASSERT_INLINE(condition)
|
||||
#define ASSERT_MSG(message)
|
||||
#endif
|
||||
|
||||
/***********************************************************************************************************************************
|
||||
|
Reference in New Issue
Block a user