Skip to content
Snippets Groups Projects
Commit d18cd895 authored by Dan Kegel's avatar Dan Kegel Committed by Alexandre Julliard
Browse files

tools: Allow running tests with valgrind.

parent ce552d44
No related branches found
No related tags found
No related merge requests found
......@@ -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" "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment