From c3e59bf1f8f911dc04bd714a19eeeec4d452a356 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 28 Mar 2016 22:41:02 +1000 Subject: Move some scripts to the bin directory. --- grindem.sh | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100755 grindem.sh (limited to 'grindem.sh') diff --git a/grindem.sh b/grindem.sh deleted file mode 100755 index 96edc5d..0000000 --- a/grindem.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/bash - -# Memory checker, and the default tool. -# --tool=memcheck --leak-check=full -# --track-origins=yes - -# Cache and branch prediction profiler, analyse speed issues. -# --tool=cachegrind -# --branch-sim=yes - -# Heap profiler, check memory sizes. -# --tool=massif - -# Heap profiler. -# --tool=dhat - -# "Call-graph generating cache profiler", complements cachegrind. -# --tool=callgrind - -# Thread error detector. -# --tool=helgrind - -# Thread error detector. -# --tool=drd - -# "experimental tool that can detect overruns of stack and global arrays" -# --tool=sgcheck - -tool="memcheck" -#tool="helgrind" -#tool="drd" -#extra="" -extra="--leak-check=full" - -valgrind --tool=$tool --time-stamp=yes --log-file=valgrind_LuaSL.log $extra ./LuaSL & -sleep 3 -valgrind --tool=$tool --time-stamp=yes --log-file=valgrind_love.log $extra ./love & -sleep 3 -valgrind --tool=$tool --time-stamp=yes --log-file=valgrind_extantz.log $extra ./extantz - -- cgit v1.1