Search Results

0
votes

Unit Testing C Code

In case you are targeting Win32 platforms or NT kernel mode, you should have a look at cfix. …
0
votes

Load testing tool that can send PUT/DELETE methods

The Grinder is a decent load testing framework that also supports PUT and DELETE. …
0
votes

Can I disable one or more processors in multiprocessor machine?

Edit boot.ini, add /NUMCPU=1, and reboot. This will instruct Windows to ignore all but one core/CPU. …
1
vote

C/C++ testing framework (like JUnit for java)

Shameless plug: If you target Windows and are using Visual Studio, check out cfix and …
0
votes

Unit and integration testing in C++

Shameless plug: Have a look at cfix and Visual Assert. …
2
votes

Automating Win32 Driver Testing

It all depends a little on what kind of driver you are writing. But in many cases, writing an appropriate makefile (or something similar) that handles driver installation, start/stop, and launching …