File: log_valgrind.sh

package info (click to toggle)
openexr 3.1.13-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 37,616 kB
  • sloc: cpp: 186,653; ansic: 24,266; sh: 173; python: 68; makefile: 23
file content (15 lines) | stat: -rwxr-xr-x 309 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash

set -ex

LOGDIR="$1"

if [[ -d ${LOGDIR}/Testing/Temporary ]]; then 
	for log in ${LOGDIR}/Testing/Temporary/MemoryChecker.*.log; do 
		echo "========================== " ${log##*/} " ==========================" 
		cat $log 
		echo 
	done 
else 
	echo "Memcheck log files not found." 
fi