-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use usersim as DLL Signed-off-by: Dave Thaler <[email protected]> * Convert usersim to a DLL Signed-off-by: Dave Thaler <[email protected]> * Make cmake build clear program info state like VS build does PR #1192 updated the vcxproj file but not the corresponding CMakeLists.txt file for export_program_info Signed-off-by: Dave Thaler <[email protected]> * Pick up latest usersim fix Signed-off-by: Dave Thaler <[email protected]> * Fix deadlock in epoch_test_stale_items test Signed-off-by: Dave Thaler <[email protected]> * Don't throw exceptions in unit tests Signed-off-by: Dave Thaler <[email protected]> * Fix single instance hook initialization in test cases Signed-off-by: Dave Thaler <[email protected]> * Fix deadlock in performance test Signed-off-by: Dave Thaler <[email protected]> * Add usersim.dll to installer files Signed-off-by: Dave Thaler <[email protected]> --------- Signed-off-by: Dave Thaler <[email protected]>
- Loading branch information
Showing
19 changed files
with
123 additions
and
78 deletions.
There are no files selected for viewing
Submodule usersim
updated
37 files
+3 −0 | inc/TraceLoggingProvider.h | |
+13 −13 | inc/ndis.h | |
+10 −0 | inc/usersim/common.h | |
+33 −10 | inc/usersim/ex.h | |
+54 −0 | inc/usersim/fwp_test.h | |
+7 −0 | inc/usersim/io.h | |
+79 −15 | inc/usersim/ke.h | |
+8 −0 | inc/usersim/mm.h | |
+2 −0 | inc/usersim/ps.h | |
+20 −1 | inc/usersim/rtl.h | |
+17 −12 | inc/usersim/se.h | |
+32 −0 | inc/wdf.h | |
+5 −4 | src/CMakeLists.txt | |
+47 −0 | src/Source.def | |
+0 −32 | src/dll_skeleton.c | |
+22 −0 | src/dllmain.cpp | |
+1 −0 | src/fault_injection.h | |
+156 −89 | src/fwp_um.cpp | |
+1 −18 | src/fwp_um.h | |
+115 −20 | src/ke.cpp | |
+3 −0 | src/kernel_um.h | |
+8 −3 | src/platform.h | |
+40 −50 | src/platform_user.cpp | |
+10 −7 | src/rtl.cpp | |
+94 −23 | src/se.cpp | |
+15 −7 | src/usersim.vcxproj | |
+12 −1 | src/usersim.vcxproj.filters | |
+7 −1 | tests/CMakeLists.txt | |
+51 −0 | tests/ex_test.cpp | |
+55 −121 | tests/ke_test.cpp | |
+53 −0 | tests/mm_test.cpp | |
+325 −0 | tests/nmr_test.cpp | |
+18 −0 | tests/rtl_test.cpp | |
+54 −0 | tests/se_test.cpp | |
+7 −1 | tests/tests.vcxproj | |
+19 −1 | tests/tests.vcxproj.filters | |
+17 −0 | tests/wdf_test.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.