Thursday, April 5, 2007

AppVerifier

I've been introduced to a pretty interesting test tool that was released by Microsoft: AppVerifier. From the intro page of the tool:

"AppVerifier encompasses areas that are specifically designed to test for commonly encountered application compatibility issues, and some very subtle kernel issues."
Pretty nice. AppVerifier works by attaching to the program you want to test, and performing configurable tests whenever the program is accessed. There are five main areas you can configure for testing:
  1. Memory: This ensures that virtual memory API's are used correctly
  2. Thread Local Storage: This just ensures that the TLS API's are used correctly.
  3. Low Resource Simulation: This simulates a low resource environment
  4. Limited User Account Predictor: This lets you know whether a non-Admin user can properly use the program
  5. Misc: Dirty stacks and dangerous API's, according to the website
I'd say it's worth a look if you're testing a program on Windows XP.

No comments: