diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-12-22 22:32:07 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-12-22 22:32:07 +0000 |
| commit | b511420d55c99fb72cf1ca5cd7dedf53010e8941 (patch) | |
| tree | 7a2c721dc63d3e53771f33c0c812626449194bf0 /run | |
| parent | e3303378742e2a0c9474135915aa8ec61f094d3d (diff) | |
Fix numerous bugs in subtitle XML generation.
Diffstat (limited to 'run')
| -rwxr-xr-x | run/test/subs_in_out | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/run/test/subs_in_out b/run/test/subs_in_out new file mode 100755 index 00000000..cd464dac --- /dev/null +++ b/run/test/subs_in_out @@ -0,0 +1,12 @@ +#!/bin/bash + +export LD_LIBRARY_PATH=build/src +if [ "$1" == "--debug" ]; then + shift + gdb --args build/test/subs_in_out "$@" +elif [ "$1" == "--valgrind" ]; then + shift + valgrind --tool="memcheck" --leak-check=full --show-reachable=yes build/test/subs_in_out "$@" +else + build/test/subs_in_out "$@" +fi |
