summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xinfra/run_unit_tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/infra/run_unit_tests.sh b/infra/run_unit_tests.sh
index 96ce5ab..b98f4f3 100755
--- a/infra/run_unit_tests.sh
+++ b/infra/run_unit_tests.sh
@@ -103,8 +103,8 @@ dump_sanitizer_log() {
*-asan)
asanlog_symbolized="${BUILD_DIR}/asan_log.asanlog_symbolized"
grep -v 'Invalid VP9' "${SANITIZER_LOG}" > "${SANITIZER_LOG}.2" || true
- "${asan_symbolize_tool}" "${BUILD_DIR}" c++filt < "${SANITIZER_LOG}.2" \
- > "${asanlog_symbolized}"
+ "${asan_symbolize_tool}" "${BUILD_DIR}" < "${SANITIZER_LOG}.2" \
+ | c++filt > "${asanlog_symbolized}"
if [[ -s "${asanlog_symbolized}" ]]; then
cat "${asanlog_symbolized}"
return 1