Skip to content

Instantly share code, notes, and snippets.

View milgner's full-sized avatar
🖖
Greetings, fellow traveler of the universe!

Marcus Ilgner milgner

🖖
Greetings, fellow traveler of the universe!
View GitHub Profile
@milgner
milgner / TeamCity_run_tests.bat
Created February 24, 2014 16:40
Script to run all test projects (which are based on Google test) in TeamCity
@echo off
cd %~dp0..\build\%1\tests
call :treeProcess
goto :eof
:treeProcess
for %%e in (*.exe) do (
%%e --gtest_output=xml:%TEMP%\%%e.xml
echo ##teamcity[importData type='junit' path='%TEMP%\%%e.xml']