Add missing newline to mysqlmon stress test assertions

The tests did not add a new line to the assertion output which would
explain why no output from the test itself was given.
This commit is contained in:
Markus Mäkelä
2018-07-08 13:41:42 +03:00
parent f3c84d84c7
commit f2e44eb5e2
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ const time_t TEST_DURATION = 90;
#if !defined(NDEBUG)
#define ss_dassert(x) do { if (!(x)) { fprintf(stderr, "Assertion failed: %s", #x); abort(); } } while(false)
#define ss_dassert(x) do { if (!(x)) { fprintf(stderr, "Assertion failed: %s\n", #x); abort(); } } while(false)
#define ss_debug(x) x
#else

View File

@ -46,7 +46,7 @@ const char* CLIENT_PASSWORD = "mysqlmon_switchover_stress";
#if !defined(NDEBUG)
#define ss_dassert(x) do { if (!(x)) { fprintf(stderr, "Assertion failed: %s", #x); abort(); } } while(false)
#define ss_dassert(x) do { if (!(x)) { fprintf(stderr, "Assertion failed: %s\n", #x); abort(); } } while(false)
#define ss_debug(x) x
#else