[ASan] Fixed Windows test by excluding macro instantiated INTERFACE_FUNCTION.

Reviewed By: kstoimenov

Differential Revision: https://reviews.llvm.org/D115478
This commit is contained in:
Kirill Stoimenov 2021-12-10 00:03:51 +00:00
parent d3ca749288
commit 76d3d07845
1 changed files with 2 additions and 2 deletions

View File

@ -15,14 +15,14 @@
// [BEWARE: be really careful with the sed commands, as this test can be run
// from different environments with different shells and seds]
//
// RUN: grep -e "INTERFACE_FUNCTION" \
// RUN: grep -e "^INTERFACE_FUNCTION" \
// RUN: %p/../../../../lib/asan/asan_interface.inc \
// RUN: %p/../../../../lib/ubsan/ubsan_interface.inc \
// RUN: %p/../../../../lib/sanitizer_common/sanitizer_common_interface.inc \
// RUN: %p/../../../../lib/sanitizer_common/sanitizer_coverage_interface.inc \
// RUN: | sed -e "s/.*(//" -e "s/).*//" > %t.imports1
//
// RUN: grep -e "INTERFACE_WEAK_FUNCTION" \
// RUN: grep -e "^INTERFACE_WEAK_FUNCTION" \
// RUN: %p/../../../../lib/asan/asan_interface.inc \
// RUN: %p/../../../../lib/ubsan/ubsan_interface.inc \
// RUN: %p/../../../../lib/sanitizer_common/sanitizer_common_interface.inc \