Revision a46027cf9b86c78c1607bffa68a601b611d58a02 authored by Ben Hermans on 04 May 2020, 08:51:10 UTC, committed by Ben Hermans on 04 May 2020, 08:51:10 UTC
1 parent 4b87877
buildTest.sh
#!/bin/bash
#Assume this is called in the LADEL directory
curdir=`pwd`
#Build direcetories
if [ ! -d "build" ]; then
mkdir build
fi
if [ ! -d "build/debug" ]; then
mkdir build/debug
fi
if [ ! -d "build/lib" ]; then
mkdir build/lib
fi
builddir=$curdir/build/debug
cd $builddir
cmake $curdir -DCMAKE_BUILD_TYPE=debug -DUNITTESTS=ON -DSIMPLE_COL_COUNTS=OFF -DLONG=ON -DAMD=ON
make
ctest -VV
# valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose bin/run_all_tests

Computing file changes ...