mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
75946e1764
- Added basic tests for DriverObject, DeviceObject and Loading/Unloading of drivers. - Added kmtestassist to be used for testing Attached DeviceObject. - Added CreateLowerDeviceRegistryKey to manually create volatile registry entry for kmtestassist driver. - More tests still need to be implemented and still need a user mode application to control kmtest. svn path=/trunk/; revision=41381
17 lines
542 B
Ruby
17 lines
542 B
Ruby
<module name="kmtest" type="kernelmodedriver" installbase="system32/drivers" installname="kmtest.sys">
|
|
<bootstrap base="$(CDOUTPUT)" />
|
|
<include base="ReactOS">include/reactos/drivers</include>
|
|
<library>ntoskrnl</library>
|
|
<library>hal</library>
|
|
<file>kmtest.c</file>
|
|
<file>deviface.c</file>
|
|
<file>deviface_test.c</file>
|
|
<file>drvobj_test.c</file>
|
|
<file>devobj_test.c</file>
|
|
<file>reghelper.c</file>
|
|
<file>ntos_ex.c</file>
|
|
<file>ntos_io.c</file>
|
|
<file>ntos_ob.c</file>
|
|
<file>ntos_pools.c</file>
|
|
<file>kmtest.rc</file>
|
|
</module>
|