This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
GoogleTestValue8 | |
Memcheck:Value8 | |
fun:_itoa_word | |
fun:__vfprintf_internal | |
fun:__vsnprintf_internal | |
fun:snprintf | |
... | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
rem Required to expand the list at every for step | |
setlocal enabledelayedexpansion | |
rem Reference: https://stackoverflow.com/a/33824457/1945549 | |
set "list=" | |
for /f "delims=" %%i in (%~dp0\local_file) do set list=!list! %%i | |
rem Pattern required to export variable to the call site |