Navigation Menu

Skip to content

Commit

Permalink
add TUI_DEBUG option to run-unit-test.sh for gdb --tui option.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tetsuro IKEDA committed Jan 8, 2010
1 parent e2e5807 commit aa9b909
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/run-unit-test.sh
Expand Up @@ -15,7 +15,11 @@ export CUTTER
CUTTER_ARGS=
CUTTER_WRAPPER=
if test x"$CUTTER_DEBUG" = x"yes"; then
CUTTER_WRAPPER="$top_dir/libtool --mode=execute gdb --args"
if test x"$TUI_DEBUG" = x"yes"; then
CUTTER_WRAPPER="$top_dir/libtool --mode=execute gdb --tui --args"
else
CUTTER_WRAPPER="$top_dir/libtool --mode=execute gdb --args"
fi
CUTTER_ARGS="--keep-opening-modules"
elif test x"$CUTTER_CHECK_LEAK" = x"yes"; then
CUTTER_WRAPPER="$top_dir/libtool --mode=execute valgrind "
Expand Down

0 comments on commit aa9b909

Please sign in to comment.