mirror of
				https://github.com/PowerShell/Win32-OpenSSH.git
				synced 2025-11-03 21:24:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			497 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			497 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
UNIT_BINARY="$1"
 | 
						|
shift
 | 
						|
UNIT_ARGS="$@"
 | 
						|
 | 
						|
test "x$OBJ" = "x" && OBJ=$PWD
 | 
						|
 | 
						|
# This mostly replicates the logic in test-exec.sh for running the
 | 
						|
# regress tests under valgrind.
 | 
						|
VG_TEST=`basename $UNIT_BINARY`
 | 
						|
VG_LOG="$OBJ/valgrind-out/${VG_TEST}.%p"
 | 
						|
VG_OPTS="--track-origins=yes --leak-check=full --log-file=${VG_LOG}"
 | 
						|
VG_OPTS="$VG_OPTS --trace-children=yes"
 | 
						|
VG_PATH="valgrind"
 | 
						|
if [ "x$VALGRIND_PATH" != "x" ]; then
 | 
						|
	VG_PATH="$VALGRIND_PATH"
 | 
						|
fi
 | 
						|
 | 
						|
exec $VG_PATH $VG_OPTS $UNIT_BINARY $UNIT_ARGS
 |