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

19 lines
274 B
Bash
Raw Normal View History

#!/bin/bash
. GetGlobals.sh
export PATH=$CXXTEST/bin:$PATH
# @main:
cxxtestgen --error-printer -o runner.cpp MyTestSuite1.h
# @:main
# @compile:
g++ -o runner -I$CXXTEST runner.cpp
# @:compile
./runner > buildRunner.log
# @run:
./runner
# @:run
\rm -f runner runner.cpp