From 273ff27b45d0fa7796627c5dc80d77bdbf89b051 Mon Sep 17 00:00:00 2001 From: Kamil Hornicek Date: Sun, 4 Jul 2010 19:57:31 +0000 Subject: [PATCH] Update test lists for winetests too. svn path=/trunk/; revision=47941 --- rostests/winetests/msvcrt/testlist.c | 4 +++- rostests/winetests/setupapi/testlist.c | 2 ++ rostests/winetests/shlwapi/testlist.c | 2 ++ rostests/winetests/urlmon/testlist.c | 14 ++++++++------ 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/rostests/winetests/msvcrt/testlist.c b/rostests/winetests/msvcrt/testlist.c index 80259dff799..a4d020fe124 100644 --- a/rostests/winetests/msvcrt/testlist.c +++ b/rostests/winetests/msvcrt/testlist.c @@ -13,6 +13,7 @@ extern void func_environ(void); extern void func_file(void); extern void func_headers(void); extern void func_heap(void); +extern void func_locale(void); extern void func_misc(void); extern void func_printf(void); extern void func_scanf(void); @@ -29,10 +30,11 @@ const struct test winetest_testlist[] = { "file", func_file }, { "headers", func_headers }, { "heap", func_heap }, + { "locale", func_locale }, { "misc", func_misc }, { "printf", func_printf }, { "scanf", func_scanf }, - { "signal", func_signal }, + { "signal", func_signal }, { "string", func_string }, { "time", func_time }, { 0, 0 } diff --git a/rostests/winetests/setupapi/testlist.c b/rostests/winetests/setupapi/testlist.c index ae1785c428e..bfa1f9ce0e4 100644 --- a/rostests/winetests/setupapi/testlist.c +++ b/rostests/winetests/setupapi/testlist.c @@ -12,6 +12,7 @@ extern void func_install(void); extern void func_misc(void); extern void func_parser(void); extern void func_query(void); +extern void func_setupcab(void); extern void func_stringtable(void); const struct test winetest_testlist[] = @@ -22,6 +23,7 @@ const struct test winetest_testlist[] = { "misc", func_misc }, { "parser", func_parser }, { "query", func_query }, + { "setupcab", func_setupcab }, { "stringtable", func_stringtable }, { 0, 0 } }; diff --git a/rostests/winetests/shlwapi/testlist.c b/rostests/winetests/shlwapi/testlist.c index dec5a258ff7..4940c49f4c4 100755 --- a/rostests/winetests/shlwapi/testlist.c +++ b/rostests/winetests/shlwapi/testlist.c @@ -14,6 +14,7 @@ extern void func_ordinal(void); extern void func_path(void); extern void func_shreg(void); extern void func_string(void); +extern void func_thread(void); extern void func_url(void); const struct test winetest_testlist[] = @@ -26,6 +27,7 @@ const struct test winetest_testlist[] = { "path", func_path }, { "shreg", func_shreg }, { "string", func_string }, + { "thread", func_thread }, { "url", func_url }, { 0, 0 } }; diff --git a/rostests/winetests/urlmon/testlist.c b/rostests/winetests/urlmon/testlist.c index c43f55e2679..c6709e8adea 100644 --- a/rostests/winetests/urlmon/testlist.c +++ b/rostests/winetests/urlmon/testlist.c @@ -11,15 +11,17 @@ extern void func_misc(void); extern void func_protocol(void); extern void func_sec_mgr(void); extern void func_stream(void); +extern void func_uri(void); extern void func_url(void); const struct test winetest_testlist[] = { - { "generated", func_generated }, - { "misc", func_misc }, - { "protocol", func_protocol }, - { "sec_mgr", func_sec_mgr }, - { "stream", func_stream }, - { "url", func_url }, + { "generated", func_generated }, + { "misc", func_misc }, + { "protocol", func_protocol }, + { "sec_mgr", func_sec_mgr }, + { "stream", func_stream }, + { "uri", func_uri }, + { "url", func_url }, { 0, 0 } };