mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[QMGR_WINETESTS]
- 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
This commit is contained in:
parent
7b00b3170e
commit
8681ae792a
1 changed files with 17 additions and 8 deletions
|
@ -6,18 +6,27 @@
|
|||
#define STANDALONE
|
||||
#include "wine/test.h"
|
||||
|
||||
extern void func_qmgr(void);
|
||||
extern void func_job(void);
|
||||
extern void func_file(void);
|
||||
extern void func_enum_jobs(void);
|
||||
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 },
|
||||
{ "job", func_job },
|
||||
{ "file", func_file },
|
||||
{ "enum_jobs", func_enum_jobs },
|
||||
{ "enum_files", func_enum_files },
|
||||
#endif
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue