mirror of
https://github.com/intel/linux-sgx
synced 2026-06-08 14:49:32 +00:00
d10cabebb5
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>
17 lines
428 B
Batchfile
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
|