Files
intel-linux-sgx/external/CppMicroServices/opencppcoverage_mergereports.bat
Li, Xun d10cabebb5 Linux 2.5 Open Source Gold Release
Added new APIs in sgx_uae_service.h and sgx_ukey_exchange.h to support ECDSA quote based remote attestation.
  The set of legacy APIs supports EPID only and the set of new APIs supports ECDSA quotes.
Enhanced Edger8r with structure deep-copy feature.
Fixed bugs.

Signed-off-by: Li, Xun <xun.li@intel.com>
2019-04-02 13:26:58 +08:00

17 lines
428 B
Batchfile

@echo off
rem This script uses OpenCppCoverage tool to merge all the .cov files in the current directory into one file.
rem The final merged file is a Cobertura compatible XML file
setlocal enabledelayedexpansion
set myvar=OpenCppCoverage.exe --verbose --export_type=cobertura:coverage.xml
for /r %%i in (*.cov) do (
call :concat %%~nxi
)
@echo on
%myvar%
goto :eof
:concat
set myvar=%myvar% --input_coverage %1
goto :eof