xlnt/third-party/cxxtest/doc/examples/buildRunner5.sh

18 lines
245 B
Bash
Raw Normal View History

#!/bin/bash
. GetGlobals.sh
export PATH=$CXXTEST/bin:$PATH
# @main:
cxxtestgen --runner=YesNoRunner -o runner.cpp MyTestSuite2.h
# @:main
# @compile:
g++ -o runner -I$CXXTEST runner.cpp
# @:compile
./runner
echo $?
\rm -f runner runner.cpp