https://git.reactos.org/?p=reactos.git;a=commitdiff;h=ad8c4468142f9d2fd42a2f...
commit ad8c4468142f9d2fd42a2fbe5880d313c218508c Author: Timo Kreuzer timo.kreuzer@reactos.org AuthorDate: Fri Dec 9 22:54:35 2022 +0200 Commit: Timo Kreuzer timo.kreuzer@reactos.org CommitDate: Fri Dec 30 11:19:26 2022 +0100
[DBGHELP_APITEST] Comment out rsym test for anything other than x86 for now --- modules/rostests/apitests/dbghelp/testlist.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/modules/rostests/apitests/dbghelp/testlist.c b/modules/rostests/apitests/dbghelp/testlist.c index d4758e4acc8..c78a778283a 100644 --- a/modules/rostests/apitests/dbghelp/testlist.c +++ b/modules/rostests/apitests/dbghelp/testlist.c @@ -8,6 +8,8 @@ extern void func_rsym(void); const struct test winetest_testlist[] = { { "pdb", func_pdb }, +#ifdef _M_IX86 { "rsym", func_rsym }, +#endif { 0, 0 } };