mirror of
https://github.com/reactos/reactos.git
synced 2025-06-20 07:36:05 +00:00
[APITESTS] Ignore GCC8 warnings where we test some crazy stuff
This commit is contained in:
parent
6b10706205
commit
1c0a2a35e7
4 changed files with 19 additions and 2 deletions
|
@ -10,6 +10,10 @@
|
|||
#include <strsafe.h>
|
||||
#include "dll_startup.h"
|
||||
|
||||
#ifdef __GNUC__
|
||||
#pragma GCC diagnostic ignored "-Wuninitialized"
|
||||
#endif
|
||||
|
||||
extern "C"
|
||||
{
|
||||
extern int static_init_counter;
|
||||
|
@ -221,7 +225,7 @@ START_TEST(static_construct)
|
|||
ok(g_CreatedFileMapping == FALSE, "Expected the shared memory to be created by my parent!\n");
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
TestInitStatic();
|
||||
TestDllStartup();
|
||||
TestStaticDestruct();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue