Author: sginsberg Date: Mon Aug 24 19:41:36 2009 New Revision: 42918
URL: http://svn.reactos.org/svn/reactos?rev=42918&view=rev Log: - Deprecate TAG() in rostests
Modified: trunk/rostests/drivers/kmtest/ntos_pools.c trunk/rostests/tests/pseh2/psehtest.c trunk/rostests/win32/win32k/tests/eng-mem-1.c
Modified: trunk/rostests/drivers/kmtest/ntos_pools.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/drivers/kmtest/ntos_pools.... ============================================================================== --- trunk/rostests/drivers/kmtest/ntos_pools.c [iso-8859-1] (original) +++ trunk/rostests/drivers/kmtest/ntos_pools.c [iso-8859-1] Mon Aug 24 19:41:36 2009 @@ -30,7 +30,7 @@ //#define NDEBUG #include "debug.h"
-#define TAG_POOLTEST TAG('P','t','s','t') +#define TAG_POOLTEST 'tstP'
/* PRIVATE FUNCTIONS ***********************************************************/
Modified: trunk/rostests/tests/pseh2/psehtest.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/tests/pseh2/psehtest.c?rev... ============================================================================== --- trunk/rostests/tests/pseh2/psehtest.c [iso-8859-1] (original) +++ trunk/rostests/tests/pseh2/psehtest.c [iso-8859-1] Mon Aug 24 19:41:36 2009 @@ -778,6 +778,12 @@ _SEH2_END;
return ret == return_positive(); +} + +DEFINE_TEST(test_continue_execution_13) +{ + /* XXX */ + return 1; } //}}}
@@ -2573,6 +2579,8 @@ USE_TEST(test_execute_handler_12), USE_TEST(test_continue_execution_12),
+ USE_TEST(test_continue_execution_13), + USE_TEST(test_leave_1), USE_TEST(test_leave_2), USE_TEST(test_leave_3),
Modified: trunk/rostests/win32/win32k/tests/eng-mem-1.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/win32/win32k/tests/eng-mem... ============================================================================== --- trunk/rostests/win32/win32k/tests/eng-mem-1.c [iso-8859-1] (original) +++ trunk/rostests/win32/win32k/tests/eng-mem-1.c [iso-8859-1] Mon Aug 24 19:41:36 2009 @@ -14,14 +14,14 @@ /* Allocate memory with EngAllocMem */ pmem1 = 0; AllocSize1 = 1024; - AllocTag1 = TAG('D','x','y','z'); + AllocTag1 = 'zyxD'; pmem1 = EngAllocMem(FL_ZERO_MEMORY, AllocSize1, AllocTag1); _AssertNotEqualValue(pmem1, NULL);
/* Allocate memory with EngAllocMem */ pmem2 = 0; AllocSize2 = 1024; - AllocTag2 = TAG('D','x','y','z'); + AllocTag2 = 'zyxD'; pmem2 = EngAllocUserMem(AllocSize2, AllocTag2); _AssertNotEqualValue(pmem1, NULL);