[PATCH] D22339: [compiler-rt] Fix missing argument in asan unittest

Etienne Bergeron via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 14 15:23:29 PDT 2016


etienneb updated this revision to Diff 64055.
etienneb added a comment.

nits


https://reviews.llvm.org/D22339

Files:
  test/asan/TestCases/Windows/dll_seh.cc

Index: test/asan/TestCases/Windows/dll_seh.cc
===================================================================
--- test/asan/TestCases/Windows/dll_seh.cc
+++ test/asan/TestCases/Windows/dll_seh.cc
@@ -1,10 +1,10 @@
 // RUN: %clang_cl_asan -O0 %p/dll_host.cc -Fe%t
 //
 // Check both -GS and -GS- builds:
-// RUN: %clang_cl_asan -LD -O0 %s -Fe%t.dll
+// RUN: %clang_cl_asan -GS  -LD -O0 %s -Fe%t.dll
 // RUN: %run %t %t.dll
 //
-// RUN: %clang_cl_asan -LD -O0 %s -Fe%t.dll
+// RUN: %clang_cl_asan -GS- -LD -O0 %s -Fe%t.dll
 // RUN: %run %t %t.dll
 
 #include <windows.h>


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D22339.64055.patch
Type: text/x-patch
Size: 573 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160714/115b059f/attachment.bin>


More information about the llvm-commits mailing list