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

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