[APITESTS] Ignore GCC8 warnings where we test some crazy stuff

This commit is contained in:
Victor Perevertkin 2019-08-17 23:05:45 +03:00
parent 6b10706205
commit 1c0a2a35e7
4 changed files with 19 additions and 2 deletions

View file

@ -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();