diff --git a/reactos/regtests/winetests/kernel32/interlck.c b/reactos/regtests/winetests/kernel32/interlck.c new file mode 100644 index 00000000000..e67fb5fc20a --- /dev/null +++ b/reactos/regtests/winetests/kernel32/interlck.c @@ -0,0 +1,130 @@ +/* + * Unit test suite for interlocked functions. + * + * Copyright 2006 Hervé Poussineau + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include + +#include "wine/test.h" +#include "windef.h" +#include "winbase.h" +#include "winerror.h" + +static void test_InterlockedCompareExchange(void) +{ + LONG dest, res; + + dest = 0; + res = InterlockedCompareExchange( &dest, 1, 0 ); + ok( res == 0 && dest == 1, + "Expected 0 and 1, got %ld and %ld", res, dest ); + + dest = 1; + res = InterlockedCompareExchange( &dest, 2, 0 ); + ok( res == 1 && dest == 1, + "Expected 1 and 1, got %ld and %ld", res, dest ); +} + +static void test_InterlockedDecrement(void) +{ + LONG dest, res; + + dest = 1; + res = InterlockedDecrement( &dest ); + ok( res == 0 && dest == 0, + "Expected 0 and 0, got %ld and %ld", res, dest ); + + dest = 0; + res = InterlockedDecrement( &dest ); + ok( res == -1 && dest == -1, + "Expected -1 and -1, got %ld and %ld", res, dest ); + + dest = -1; + res = InterlockedDecrement( &dest ); + ok( res == -2 && dest == -2, + "Expected -2 and -2, got %ld and %ld", res, dest ); +} + +static void test_InterlockedExchange(void) +{ + LONG dest, res; + + dest = 0; + res = InterlockedExchange( &dest, 1 ); + ok( res == 0 && dest == 1, + "Expected 0 and 1, got %ld and %ld", res, dest ); + + dest = 1; + res = InterlockedExchange( &dest, 2 ); + ok( res == 1 && dest == 2, + "Expected 1 and 2, got %ld and %ld", res, dest ); + + dest = 1; + res = InterlockedExchange( &dest, -1 ); + ok( res == 1 && dest == -1, + "Expected 1 and -1, got %ld and %ld", res, dest ); +} + +static void test_InterlockedExchangeAdd(void) +{ + LONG dest, res; + + dest = 0; + res = InterlockedExchangeAdd( &dest, 1 ); + ok( res == 0 && dest == 1, + "Expected 0 and 1, got %ld and %ld", res, dest ); + + dest = 1; + res = InterlockedExchangeAdd( &dest, 2 ); + ok( res == 1 && dest == 3, + "Expected 1 and 3, got %ld and %ld", res, dest ); + + dest = 1; + res = InterlockedExchangeAdd( &dest, -1 ); + ok( res == 1 && dest == 0, + "Expected 1 and 0, got %ld and %ld", res, dest ); +} + +static void test_InterlockedIncrement(void) +{ + LONG dest, res; + + dest = -2; + res = InterlockedIncrement( &dest ); + ok( res == -1 && dest == -1, + "Expected -1 and -1, got %ld and %ld", res, dest ); + + dest = -1; + res = InterlockedIncrement( &dest ); + ok( res == 0 && dest == 0, + "Expected 0 and 0, got %ld and %ld", res, dest ); + + dest = 0; + res = InterlockedIncrement( &dest ); + ok( res == 1 && dest == 1, + "Expected 1 and 1, got %ld and %ld", res, dest ); +} + +START_TEST(interlck) +{ + test_InterlockedCompareExchange(); + test_InterlockedDecrement(); + test_InterlockedExchange(); + test_InterlockedExchangeAdd(); + test_InterlockedIncrement(); +} diff --git a/reactos/regtests/winetests/kernel32/kernel32.rbuild b/reactos/regtests/winetests/kernel32/kernel32.rbuild index 0953d5263fc..ba24888edd6 100644 --- a/reactos/regtests/winetests/kernel32/kernel32.rbuild +++ b/reactos/regtests/winetests/kernel32/kernel32.rbuild @@ -15,6 +15,7 @@ file.c format_msg.c heap.c + interlck.c locale.c mailslot.c module.c diff --git a/reactos/regtests/winetests/kernel32/testlist.c b/reactos/regtests/winetests/kernel32/testlist.c index efd5c59bdc2..b9f468769bb 100755 --- a/reactos/regtests/winetests/kernel32/testlist.c +++ b/reactos/regtests/winetests/kernel32/testlist.c @@ -22,6 +22,7 @@ extern void func_environ(void); extern void func_file(void); extern void func_format_msg(void); extern void func_heap(void); +extern void func_interlck(void); extern void func_locale(void); extern void func_module(void); extern void func_mailslot(void); @@ -49,6 +50,7 @@ const struct test winetest_testlist[] = { "file", func_file }, { "format_msg", func_format_msg }, { "heap", func_heap }, + { "interlck", func_interlck }, { "locale", func_locale }, { "module", func_module }, { "mailslot", func_mailslot },