mirror of
git://projects.qi-hardware.com/fped.git
synced 2024-11-22 07:48:26 +02:00
14 lines
363 B
Plaintext
14 lines
363 B
Plaintext
|
#!/bin/sh
|
||
|
#valgrind --leak-check=full --show-reachable=yes --suppressions=leak.supp \
|
||
|
# ./fped "$@"
|
||
|
|
||
|
#
|
||
|
# Seems that we can't suppress warnings from gtk_init, so we use FPED_NO_GUI
|
||
|
# to avoid bringing up Gtk+ at all.
|
||
|
#
|
||
|
FPED_NO_GUI=y valgrind --leak-check=full --show-reachable=yes \
|
||
|
./fped "$@"
|
||
|
|
||
|
#valgrind --leak-check=full --show-reachable=no \
|
||
|
# ./fped "$@"
|