Missing library from test link list.
[dcpomatic.git] / run / long-tests
1 #!/bin/bash
2
3 export LD_LIBRARY_PATH=build/src/lib:$LD_LIBRARY_PATH
4 if [ "$1" == "--debug" ]; then
5     gdb --args build/test/long-unit-tests
6 elif [ "$1" == "--valgrind" ]; then
7     valgrind --tool="memcheck" --leak-check=full build/test/long-unit-tests
8 else
9     build/test/long-unit-tests
10 fi