From: Timur Iskhodzhanov Date: Thu, 22 May 2014 15:14:05 +0000 (+0000) Subject: Quick-fix a copy-and-paste mistake in one of the ASan test X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d6ac15dd5fce595f876edf2d0c1e072f6556a233;p=platform%2Fupstream%2Fllvm.git Quick-fix a copy-and-paste mistake in one of the ASan test llvm-svn: 209448 --- diff --git a/compiler-rt/test/asan/TestCases/Windows/dll_host.cc b/compiler-rt/test/asan/TestCases/Windows/dll_host.cc index 8ba4cd3..470d3fa 100644 --- a/compiler-rt/test/asan/TestCases/Windows/dll_host.cc +++ b/compiler-rt/test/asan/TestCases/Windows/dll_host.cc @@ -5,7 +5,7 @@ // RUN: %clangxx_asan -O0 %s -Fe%t // // Get the list of ASan wrappers exported by the main module RTL: -// RUN: dumpbin /EXPORTS %t | grep -o "__asan_wrap[^ ]*" < %t.exports | grep -v @ | sort | uniq > %t.exported_wrappers +// RUN: dumpbin /EXPORTS %t | grep -o "__asan_wrap[^ ]*" | grep -v @ | sort | uniq > %t.exported_wrappers // // Get the list of ASan wrappers imported by the DLL RTL: // RUN: grep INTERCEPT_LIBRARY_FUNCTION %p/../../../../lib/asan/asan_dll_thunk.cc | grep -v define | sed "s/.*(\(.*\)).*/__asan_wrap_\1/" | sort | uniq > %t.dll_imports