mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
18 lines
245 B
Bash
18 lines
245 B
Bash
|
#!/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
|