[compiler-rt] r209448 - Quick-fix a copy-and-paste mistake in one of the ASan test
Timur Iskhodzhanov
timurrrr at google.com
Thu May 22 08:14:05 PDT 2014
Author: timurrrr
Date: Thu May 22 10:14:05 2014
New Revision: 209448
URL: http://llvm.org/viewvc/llvm-project?rev=209448&view=rev
Log:
Quick-fix a copy-and-paste mistake in one of the ASan test
Modified:
compiler-rt/trunk/test/asan/TestCases/Windows/dll_host.cc
Modified: compiler-rt/trunk/test/asan/TestCases/Windows/dll_host.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Windows/dll_host.cc?rev=209448&r1=209447&r2=209448&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Windows/dll_host.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Windows/dll_host.cc Thu May 22 10:14:05 2014
@@ -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
More information about the llvm-commits
mailing list