task_cpp_unit_test.sh 178 Bytes
Newer Older
VoVAllen's avatar
VoVAllen committed
1
#!/bin/bash
Jinjing Zhou's avatar
Jinjing Zhou committed
2
3
4
5
function fail {
    echo FAIL: $@
    exit -1
}
6
echo $PWD
VoVAllen's avatar
VoVAllen committed
7
pushd build
VoVAllen's avatar
VoVAllen committed
8
9
10
ls -lh
export LD_LIBRARY_PATH=$PWD:$LD_LIBRARY_PATH
./runUnitTests || fail "CPP unit test"
Minjie Wang's avatar
Minjie Wang committed
11
popd