5 lines
311 B
Bash
Executable File
5 lines
311 B
Bash
Executable File
#!/bin/sh
|
|
#valgrind --tool=cachegrind ./transmission-qt 2>&1 | tee runlog
|
|
#valgrind --tool=massif --threshold=0.2 ./transmission-qt 2>&1 | tee runlog
|
|
valgrind --tool=memcheck --leak-check=full --leak-resolution=high --num-callers=16 --log-file=x-valgrind --show-reachable=no ./transmission-qt 2>&1 | tee runlog
|