mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
8681ae792a
- Skip all qmgr tests because they cause timeouts on testbot. This should hopefully be fixed soon and they can be re-enabled. CORE-6536 svn path=/trunk/; revision=57353
32 lines
738 B
C
32 lines
738 B
C
/* Automatically generated file; DO NOT EDIT!! */
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
|
|
#define STANDALONE
|
|
#include "wine/test.h"
|
|
|
|
extern void func_enum_files(void);
|
|
extern void func_enum_jobs(void);
|
|
extern void func_file(void);
|
|
extern void func_job(void);
|
|
extern void func_qmgr(void);
|
|
|
|
#ifdef __REACTOS__
|
|
void func_skipped(void) { skip("qmgr tests skipped due to CORE-6536\n"); }
|
|
#endif
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
/* Skipped because of testbot timeouts. See CORE-6536. */
|
|
#ifdef __REACTOS__
|
|
{ "skipped", func_skipped },
|
|
#else
|
|
{ "enum_files", func_enum_files },
|
|
{ "enum_jobs", func_enum_jobs },
|
|
{ "file", func_file },
|
|
{ "job", func_job },
|
|
{ "qmgr", func_qmgr },
|
|
#endif
|
|
{ 0, 0 }
|
|
};
|