https://git.reactos.org/?p=reactos.git;a=commitdiff;h=f8f08f3e9b134eb149aee8...
commit f8f08f3e9b134eb149aee8ea7af1a7add749d386 Author: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org AuthorDate: Fri Aug 17 21:44:44 2018 +0200 Commit: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org CommitDate: Fri Aug 17 21:50:07 2018 +0200
[ROSTESTS] Rename the "softmodalmsgbox" test to "messagebox". --- modules/rostests/win32/user32/CMakeLists.txt | 2 +- modules/rostests/win32/user32/messagebox/CMakeLists.txt | 5 +++++ .../{softmodalmsgbox/softmodalmsgbox.c => messagebox/messagebox.c} | 0 .../{softmodalmsgbox/softmodalmsgbox.rc => messagebox/messagebox.rc} | 0 .../rostests/win32/user32/{softmodalmsgbox => messagebox}/resource.h | 0 modules/rostests/win32/user32/softmodalmsgbox/CMakeLists.txt | 5 ----- 6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/modules/rostests/win32/user32/CMakeLists.txt b/modules/rostests/win32/user32/CMakeLists.txt index 205afbc403..097f5261f5 100644 --- a/modules/rostests/win32/user32/CMakeLists.txt +++ b/modules/rostests/win32/user32/CMakeLists.txt @@ -1,5 +1,5 @@ add_subdirectory(biditext) +add_subdirectory(messagebox) add_subdirectory(paintdesktop) -add_subdirectory(softmodalmsgbox) add_subdirectory(sysicon) add_subdirectory(winstation) diff --git a/modules/rostests/win32/user32/messagebox/CMakeLists.txt b/modules/rostests/win32/user32/messagebox/CMakeLists.txt new file mode 100644 index 0000000000..a989b491dc --- /dev/null +++ b/modules/rostests/win32/user32/messagebox/CMakeLists.txt @@ -0,0 +1,5 @@ + +add_executable(messagebox messagebox.c messagebox.rc) +set_module_type(messagebox win32cui UNICODE) +add_importlibs(messagebox user32 msvcrt kernel32) +add_rostests_file(TARGET messagebox SUBDIR suppl) diff --git a/modules/rostests/win32/user32/softmodalmsgbox/softmodalmsgbox.c b/modules/rostests/win32/user32/messagebox/messagebox.c similarity index 100% rename from modules/rostests/win32/user32/softmodalmsgbox/softmodalmsgbox.c rename to modules/rostests/win32/user32/messagebox/messagebox.c diff --git a/modules/rostests/win32/user32/softmodalmsgbox/softmodalmsgbox.rc b/modules/rostests/win32/user32/messagebox/messagebox.rc similarity index 100% rename from modules/rostests/win32/user32/softmodalmsgbox/softmodalmsgbox.rc rename to modules/rostests/win32/user32/messagebox/messagebox.rc diff --git a/modules/rostests/win32/user32/softmodalmsgbox/resource.h b/modules/rostests/win32/user32/messagebox/resource.h similarity index 100% rename from modules/rostests/win32/user32/softmodalmsgbox/resource.h rename to modules/rostests/win32/user32/messagebox/resource.h diff --git a/modules/rostests/win32/user32/softmodalmsgbox/CMakeLists.txt b/modules/rostests/win32/user32/softmodalmsgbox/CMakeLists.txt deleted file mode 100644 index 310a01e518..0000000000 --- a/modules/rostests/win32/user32/softmodalmsgbox/CMakeLists.txt +++ /dev/null @@ -1,5 +0,0 @@ - -add_executable(softmodalmsgbox softmodalmsgbox.c softmodalmsgbox.rc) -set_module_type(softmodalmsgbox win32cui UNICODE) -add_importlibs(softmodalmsgbox user32 msvcrt kernel32) -add_rostests_file(TARGET softmodalmsgbox SUBDIR suppl)