task_cpp_unittest.sh 145 Bytes
Newer Older
1
#!/bin/bash
2 3
export LD_LIBRARY_PATH=lib:${LD_LIBRARY_PATH}

4 5 6 7
make test -j8 || exit -1
for test in tests/cpp/*_test; do
    ./$test || exit -1
done