Mark Jansen
f941c78f50
[ATL_APITEST] Show that CComObject's COM_MAP continues enumeration after a failing blind function.
2017-12-21 21:37:54 +01:00
Amine Khaldi
b09a63709b
[WS2_32_APITEST] Improve the existing PCH and make use of it.
2017-12-21 13:36:04 +01:00
Amine Khaldi
823270e608
[ATL_APITEST] Add a PCH.
2017-12-21 13:31:24 +01:00
Mark Jansen
cba274350e
[BROWSEUI_APITEST] Add tests for IACLCustomMRU.
...
CORE-9281
2017-12-18 23:17:17 +01:00
Mark Jansen
8aaa5eea75
[COM_APITEST] Add IACLCustomMRU
2017-12-18 23:17:17 +01:00
Amine Khaldi
e36cf4acaf
[APITESTS][WINETESTS] Addendum to the recent PCH work.
2017-12-18 13:21:47 +01:00
Amine Khaldi
8ed8eec17c
[SHELL32_APITEST] Improve the existing PCH and make use of it. Convert AddCommas.c to c++ in order to have it benefit from the PCH.
2017-12-17 13:31:22 +01:00
Amine Khaldi
3bf31bf2ab
[WIN32KNT_APITEST] Improve the existing PCH and make use of it.
2017-12-17 12:17:37 +01:00
Pierre Schweitzer
72094e637d
[KERNEL32_APITEST] Add a test for FormatMessage backed with MC file.
2017-12-16 19:43:29 +01:00
Amine Khaldi
e00cc9728c
[KERNEL32_APITEST] Add a PCH.
2017-12-13 13:48:26 +01:00
Amine Khaldi
3543c43252
[COM_APITEST] Improve the existing PCH and make use of it.
2017-12-12 13:01:03 +01:00
Amine Khaldi
24f8946956
[ADVAPI32_APITEST] Add a PCH.
2017-12-12 12:44:32 +01:00
Colin Finck
3a69fd4e96
[PRINTING] Fix GetPrinterW, add tests for it and GetDefaultPrinterA/W, and add a proper stub for GetPrinterDriverDirectoryA.
...
* Pass the correct handle to _RpcGetPrinter in GetPrinterW.
* Pass an empty string instead of a NULL pointer as wszComputerName to the GetPrinterLevel* functions, because this variable is later used as source for StringCbCopyExW.
* Don't check for GetLastError() == ERROR_SUCCESS in tests. Windows apparently only sets the last error in case of failure.
The Printing code should probably be changed similarly in a future commit.
Should fix CORE-14072
2017-12-10 12:28:08 +01:00
Amine Khaldi
eafa77f30a
[GDI32_APITEST] Properly add CreateDIBPatternBrush.c to the source files list instead of relying on CMake to do so.
2017-12-09 20:03:08 +01:00
Mark Jansen
4ac511405f
[SHELL32_APITEST] Add test for SHCreateFileExtractIconW
...
CORE-14082
2017-12-09 11:56:42 +01:00
Serge Gautherie
a11841c939
[NTDLL_APITEST] Create Test_NtFreeVirtualMemory_Parameters(). CORE-13126
...
- Test 4th parameter ("ULONG FreeType") invalid values.
2017-12-08 09:47:44 +01:00
Thomas Faber
4aabe88288
[NTDLL_APITEST] Add license header for NtFreeVirtualMemory.c
2017-12-08 09:47:42 +01:00
Amine Khaldi
9b349f958c
[ADVAPI32_APITEST][NTDLL_APITEST][WINDOWSCODECS] Comment out some unused functions and types. Silences some clang-cl warnings.
2017-12-08 00:22:05 +01:00
Serge Gautherie
6fe9441d32
[NTDLL_APITEST] Allow the test to load on Windows XP. ROSTESTS-293
2017-12-07 09:54:53 +01:00
Stanislav Motylkov
df88fcf5cc
[SHELL32_APITEST] SHParseDisplayName: More tests for relative paths
2017-12-05 10:48:37 +02:00
Stanislav Motylkov
5dade73072
[BROWSEUI_APITEST] Improve tests for relative paths
2017-12-05 10:48:37 +02:00
Stanislav Motylkov
d6e0c422e1
[IPHLPAPI_APITEST] Add tests for interface resolving functions
...
CORE-13831, CORE-14033
2017-12-03 21:08:31 +01:00
Amine Khaldi
c39b0fc667
[USER32_APITEST] Add a PCH.
2017-12-02 22:18:06 +01:00
Amine Khaldi
283bbe7346
[NTDLL_APITEST] Add a PCH.
2017-12-02 22:15:04 +01:00
Amine Khaldi
aee83c359c
[GDI32_APITEST] Add a PCH.
2017-12-02 22:14:47 +01:00
Pierre Schweitzer
3a33ab9638
[NTDLL_APITEST] Add simple tests for RtlUnicodeStringToAnsiString() that were used to test the kernel32 regression
2017-10-16 22:04:22 +02:00
Pierre Schweitzer
eb05356a26
[KERNEL32_APITEST] Add a few tests for GetVolumeInformation that were used to fix previous issues
2017-10-15 10:44:50 +02:00
Pierre Schweitzer
d788a52c79
[KERNEL32_APITEST]: Add tests for IOCTL_MOUNTDEV_QUERY_SUGGESTED_LINK_NAME that show its usage is "one-shot". Once queried, it gets forgotten.
2017-10-08 10:12:08 +02:00
Pierre Schweitzer
ac8d045461
[KERNEL32_APITEST]: Rewrite DeviceIoControl to test both disk.sys and cdrom.sys
2017-10-07 14:07:06 +02:00
Pierre Schweitzer
d3b4f09eb3
[KERNEL32_APITEST]: Fix uninit stack var usage
2017-10-07 12:11:17 +02:00
Pierre Schweitzer
a6b61b855c
[KERNEL32_APITEST]: Add few tests for IOCTL_MOUNTDEV_QUERY_UNIQUE_ID
2017-10-07 12:09:27 +02:00
Colin Finck
da53a9399a
[WS2_32_APITEST] Make the apitest fully C89-compliant to fix building under MSVC 2010.
...
In C89, you can only initialize the first member of a union within a declaration. Unfortunately, that is the S_un_b UCHAR array for the S_un union inside struct in_addr.
So we have to initialize it with each UCHAR member of Address.
2017-10-06 17:33:47 +02:00
Colin Finck
9ebf43567d
Add .gitattributes and .gitignore files and normalize line endings in the repository ( #10 )
2017-10-04 20:37:32 +02:00
Colin Finck
c2c66aff7d
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
2017-10-03 07:45:34 +00:00