/* * Tests msvcrt/data.c * * Copyright 2006 Andrew Ziem * * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ #include "msvcrt.h" #include "wine/test.h" #include #include #include #include #include #include #include #include #include #include #include typedef void (*_INITTERMFUN)(void); extern unsigned int CDECL _initterm(_INITTERMFUN *start,_INITTERMFUN *end); static int callbacked; void initcallback(void) { callbacked++; } #define initterm_test(start, end, expected) \ callbacked = 0; \ rc = _initterm(start, end); \ ok(expected == rc, "_initterm: return result mismatch: got %i, expected %i\n", rc, expected); \ ok(expected == callbacked,"_initterm: callbacks count mismatch: got %i, expected %i\n", callbacked, expected); void test_initterm(void) { int i; int rc; static _INITTERMFUN callbacks[4]; for (i = 0; i < 4; i++) { callbacks[i] = initcallback; } initterm_test(&callbacks[0], &callbacks[1], 1); initterm_test(&callbacks[0], &callbacks[2], 2); initterm_test(&callbacks[0], &callbacks[3], 3); callbacks[1] = NULL; initterm_test(&callbacks[0], &callbacks[3], 2); } START_TEST(data) { test_initterm(); }