tools: Allow running tests with valgrind.

This commit is contained in:
Dan Kegel 2008-07-18 16:31:43 -07:00 committed by Alexandre Julliard
parent ce552d4451
commit d18cd89567
1 changed files with 7 additions and 1 deletions

View File

@ -118,4 +118,10 @@ fi
WINETEST_PLATFORM=${platform:-wine}
export WINETEST_PLATFORM WINETEST_DEBUG
exec "$topobjdir/wine" "$program" "$infile" "$@"
# WINETEST_WRAPPER is normally empty, but can be set by caller, e.g.
# WINETEST_WRAPPER=time
# would give data about how long each test takes, and
# WINETEST_WRAPPER=valgrind
# would run the tests under valgrind to look for memory errors.
exec $WINETEST_WRAPPER "$topobjdir/wine" "$program" "$infile" "$@"