mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
MDEV-35583 Tests failing on macOS
These tests rely on THR_KEY_mysys but it is not initialized. On Linux, the corresponding thread variable is null, but on macOS it has a nonzero value. In all cases, initialize the variable explicitly by calling MY_INIT and my_end appropriately.
This commit is contained in:
committed by
Daniel Black
parent
694d91da89
commit
d92d271648
@@ -51,6 +51,8 @@ public:
|
||||
|
||||
int main(int args, char **argv)
|
||||
{
|
||||
MY_INIT(argv[0]);
|
||||
|
||||
plan(NO_PLAN);
|
||||
diag("Testing Json_writer checks");
|
||||
|
||||
@@ -123,6 +125,7 @@ int main(int args, char **argv)
|
||||
|
||||
diag("Done");
|
||||
|
||||
my_end(MY_CHECK_ERROR);
|
||||
return exit_status();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user