Author: tfaber
Date: Fri Sep 13 12:54:33 2013
New Revision: 60079
URL:
http://svn.reactos.org/svn/reactos?rev=60079&view=rev
Log:
[QMGR_WINETEST]
- Enable qmgr tests again. They all get skipped now instead of crashing. When npfs_new
manages to run these, we know it's really working well ;)
CORE-6536
Modified:
trunk/rostests/winetests/qmgr/testlist.c
Modified: trunk/rostests/winetests/qmgr/testlist.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/qmgr/testlist.c…
==============================================================================
--- trunk/rostests/winetests/qmgr/testlist.c [iso-8859-1] (original)
+++ trunk/rostests/winetests/qmgr/testlist.c [iso-8859-1] Fri Sep 13 12:54:33 2013
@@ -9,21 +9,12 @@
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 }
};