阅读:1596回复:8
50(分)测试驱动有什么专门的工具吗?请赐教,谢谢!
测试驱动有什么专门的工具吗?请赐教,谢谢!
|
|
|
沙发#
发布于:2004-11-29 10:56
DDK有专门的测试工具.
|
|
|
板凳#
发布于:2004-11-29 11:29
Windbg
SoftICE |
|
地板#
发布于:2004-11-29 11:50
DDK有专门的测试工具. 什么工具? |
|
|
地下室#
发布于:2004-11-29 11:58
找WHQL,下载微软驱动程序专用测试工具HCT,就可以测试了
|
|
5楼#
发布于:2004-11-29 12:09
Log on www.osronline.com and read the article "What's Your Test Score -- Best Practices for Driver Testing".
|
|
6楼#
发布于:2004-11-29 12:15
有的。driverstudio中也有一些辅助测试的工具。
|
|
|
7楼#
发布于:2004-12-01 04:56
1. Compuware/Numega DriverStudio
BoundsChecker : memory/resource leak & corruption, kernel API parameters validating, etc. Can be used in single machine, check result with softice or buildin GUI BTw, TureTime for optimization, and TrueCoverage for code coverage testing in DriverStudio. 2. MS DDK Driver Verifier : Superset of BoundsChecker, normally used with WinDbg, because every fault will crash your testing machine. There are also some tools useful under ddk\tools folder, such as pnpdtest and pooltag. You might also want to try out PreFast, which will check your driver in compiling time. 3. WHQL test HCT. A automatic testing tool, should be used along BoundsChecker / Driver Verifier. But you are out of luck, if you develop a abnormal driver, which does not belong to any HCT predefined class. In fact, 1 and 2 are kind of testing monitor, which tries to figure out the driver's wrong doing, and 3 will generate a lot of testing cases for your driver. |
|
8楼#
发布于:2004-12-05 14:54
谢谢xqchen大侠的精彩回答,不知大侠是否用过这些工具,可能还会有些问题请教。
|
|
|