2013-09-22 11:27:12 -04:00
|
|
|
#! /bin/bash
|
|
|
|
|
2016-01-01 15:05:09 -05:00
|
|
|
# This script runs Cuberite under valgrind
|
2013-09-22 11:27:12 -04:00
|
|
|
# It expects valgrind to be normally installed and available
|
|
|
|
# Note that this is for Linux only and debug-only, since it slows down MCS way too much
|
|
|
|
|
2015-08-26 04:58:51 -04:00
|
|
|
valgrind --log-file=valgrind.log --suppressions=vg.supp --tool=memcheck --leak-check=full --leak-resolution=high --show-reachable=yes --track-origins=yes -v ./Cuberite
|