From: Brendan McGrath <bmcgrath@codeweavers.com> --- configure.ac | 1 + dlls/colorcnv/tests/Makefile.in | 5 +++++ dlls/colorcnv/tests/colorcnv.c | 23 +++++++++++++++++++++++ 3 files changed, 29 insertions(+) create mode 100644 dlls/colorcnv/tests/Makefile.in create mode 100644 dlls/colorcnv/tests/colorcnv.c diff --git a/configure.ac b/configure.ac index 3e617aaad4f..88d9878d3db 100644 --- a/configure.ac +++ b/configure.ac @@ -2509,6 +2509,7 @@ WINE_CONFIG_MAKEFILE(dlls/cldapi) WINE_CONFIG_MAKEFILE(dlls/clusapi) WINE_CONFIG_MAKEFILE(dlls/cng.sys) WINE_CONFIG_MAKEFILE(dlls/colorcnv) +WINE_CONFIG_MAKEFILE(dlls/colorcnv/tests) WINE_CONFIG_MAKEFILE(dlls/combase) WINE_CONFIG_MAKEFILE(dlls/combase/tests) WINE_CONFIG_MAKEFILE(dlls/comcat) diff --git a/dlls/colorcnv/tests/Makefile.in b/dlls/colorcnv/tests/Makefile.in new file mode 100644 index 00000000000..a4ee918ef95 --- /dev/null +++ b/dlls/colorcnv/tests/Makefile.in @@ -0,0 +1,5 @@ +TESTDLL = colorcnv.dll +IMPORTS = + +SOURCES = \ + colorcnv.c diff --git a/dlls/colorcnv/tests/colorcnv.c b/dlls/colorcnv/tests/colorcnv.c new file mode 100644 index 00000000000..991f047bdef --- /dev/null +++ b/dlls/colorcnv/tests/colorcnv.c @@ -0,0 +1,23 @@ +/* + * Copyright 2026 Brendan McGrath for CodeWeavers + * + * 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 "wine/test.h" + +START_TEST(colorcnv) +{ +} -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10709