aboutsummaryrefslogtreecommitdiff
path: root/PxShared/buildtools/steps/run_tests_linux.sh
blob: 8770e39a230b0bab5aa1d11c55e87577f4f60322 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash +x

set -e

# run tests
pushd "$(dirname "$0")/../../bin/linux64-gcc"
./BlastUnitTestsDEBUG.elf --gtest_output=xml:BlastUnitTestsDEBUG.xml
echo \#\#teamcity[importData type=\'gtest\' parseOutOfDate=\'true\' file=\'bin/linux64-gcc/BlastUnitTestsDEBUG.xml\']
./BlastUnitTests.elf --gtest_output=xml:BlastUnitTests.xml
echo \#\#teamcity[importData type=\'gtest\' parseOutOfDate=\'true\' file=\'bin/linux64-gcc/BlastUnitTests.xml\']
popd