Files
cpp-thirdparty/noarch/lib/py/cxxtest/doc/examples/buildRunner9.sh
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

22 lines
451 B
Bash

#!/bin/bash
. GetGlobals.sh
export PATH=$CXXTEST/bin:$PATH
# @part:
cxxtestgen --part --error-printer -o MyTestSuite1.cpp MyTestSuite1.h
cxxtestgen --part --error-printer -o MyTestSuite2.cpp MyTestSuite2.h
# @:part
# @root:
cxxtestgen --root --error-printer -o runner.cpp
# @:root
# @compile:
g++ -o runner -I$CXXTEST runner.cpp MyTestSuite1.cpp MyTestSuite2.cpp
# @:compile
./runner -v
rm -f MyTestSuite1.cpp MyTestSuite2.cpp runner.cpp runner