[ASan/Win tests] Remove the extra 'cat' in front of FileCheck now that it's clear...
authorTimur Iskhodzhanov <timurrrr@google.com>
Mon, 26 May 2014 11:54:20 +0000 (11:54 +0000)
committerTimur Iskhodzhanov <timurrrr@google.com>
Mon, 26 May 2014 11:54:20 +0000 (11:54 +0000)
llvm-svn: 209622

42 files changed:
compiler-rt/test/asan/TestCases/Windows/bitfield_uaf.cc
compiler-rt/test/asan/TestCases/Windows/calloc_left_oob.cc
compiler-rt/test/asan/TestCases/Windows/calloc_right_oob.cc
compiler-rt/test/asan/TestCases/Windows/calloc_uaf.cc
compiler-rt/test/asan/TestCases/Windows/dll_intercept_memcpy.cc
compiler-rt/test/asan/TestCases/Windows/dll_intercept_strlen.cc
compiler-rt/test/asan/TestCases/Windows/dll_malloc_left_oob.cc
compiler-rt/test/asan/TestCases/Windows/dll_malloc_uaf.cc
compiler-rt/test/asan/TestCases/Windows/dll_noreturn.cc
compiler-rt/test/asan/TestCases/Windows/dll_operator_array_new_left_oob.cc
compiler-rt/test/asan/TestCases/Windows/dll_operator_array_new_with_dtor_left_oob.cc
compiler-rt/test/asan/TestCases/Windows/dll_poison_unpoison.cc
compiler-rt/test/asan/TestCases/Windows/dll_stack_use_after_return.cc
compiler-rt/test/asan/TestCases/Windows/dll_thread_stack_array_left_oob.cc
compiler-rt/test/asan/TestCases/Windows/double_free.cc
compiler-rt/test/asan/TestCases/Windows/double_operator_delete.cc
compiler-rt/test/asan/TestCases/Windows/global_const_string_oob.cc
compiler-rt/test/asan/TestCases/Windows/intercept_memcpy.cc
compiler-rt/test/asan/TestCases/Windows/intercept_strdup.cc
compiler-rt/test/asan/TestCases/Windows/intercept_strlen.cc
compiler-rt/test/asan/TestCases/Windows/malloc_left_oob.cc
compiler-rt/test/asan/TestCases/Windows/malloc_right_oob.cc
compiler-rt/test/asan/TestCases/Windows/malloc_uaf.cc
compiler-rt/test/asan/TestCases/Windows/operator_array_new_left_oob.cc
compiler-rt/test/asan/TestCases/Windows/operator_array_new_right_oob.cc
compiler-rt/test/asan/TestCases/Windows/operator_array_new_uaf.cc
compiler-rt/test/asan/TestCases/Windows/operator_array_new_with_dtor_left_oob.cc
compiler-rt/test/asan/TestCases/Windows/operator_delete_wrong_argument.cc
compiler-rt/test/asan/TestCases/Windows/operator_new_left_oob.cc
compiler-rt/test/asan/TestCases/Windows/operator_new_right_oob.cc
compiler-rt/test/asan/TestCases/Windows/operator_new_uaf.cc
compiler-rt/test/asan/TestCases/Windows/realloc_left_oob.cc
compiler-rt/test/asan/TestCases/Windows/realloc_right_oob.cc
compiler-rt/test/asan/TestCases/Windows/realloc_uaf.cc
compiler-rt/test/asan/TestCases/Windows/stack_array_left_oob.cc
compiler-rt/test/asan/TestCases/Windows/stack_array_right_oob.cc
compiler-rt/test/asan/TestCases/Windows/stack_use_after_return.cc
compiler-rt/test/asan/TestCases/Windows/thread_stack_array_left_oob.cc
compiler-rt/test/asan/TestCases/Windows/thread_stack_array_right_oob.cc
compiler-rt/test/asan/TestCases/Windows/use_after_realloc.cc
compiler-rt/test/asan/TestCases/Windows/wrong_downcast_on_heap.cc
compiler-rt/test/asan/TestCases/Windows/wrong_downcast_on_stack.cc

index 2e63956..63f3941 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <windows.h>
 
index d005e08..71399a7 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <malloc.h>
 
index f013d8b..fcf3138 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <malloc.h>
 
index 824d2b8..5a1d936 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <malloc.h>
 
index ffa3bf9..8a69e7d 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: %clangxx_asan -O0 %p/dll_host.cc -Fe%t
 // RUN: %clangxx_asan -LD -O0 %s -Fe%t.dll
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t %t.dll 2>&1 | cat | FileCheck %s
+// RUN: not %run %t %t.dll 2>&1 | FileCheck %s
 
 #include <stdio.h>
 #include <string.h>
index 684c82c..caac426 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: %clangxx_asan -O0 %p/dll_host.cc -Fe%t
 // RUN: %clangxx_asan -LD -O0 %s -Fe%t.dll
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t %t.dll 2>&1 | cat | FileCheck %s
+// RUN: not %run %t %t.dll 2>&1 | FileCheck %s
 
 #include <stdio.h>
 #include <string.h>
index cc96dd4..8064b83 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: %clangxx_asan -O0 %p/dll_host.cc -Fe%t
 // RUN: %clangxx_asan -LD -O0 %s -Fe%t.dll
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t %t.dll 2>&1 | cat | FileCheck %s
+// RUN: not %run %t %t.dll 2>&1 | FileCheck %s
 
 #include <malloc.h>
 extern "C" __declspec(dllexport)
index 7a37b44..5842999 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: %clangxx_asan -O0 %p/dll_host.cc -Fe%t
 // RUN: %clangxx_asan -LD -O0 %s -Fe%t.dll
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t %t.dll 2>&1 | cat | FileCheck %s
+// RUN: not %run %t %t.dll 2>&1 | FileCheck %s
 
 #include <malloc.h>
 
index 90e0c11..4b5bf33 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: %clangxx_asan -O0 %p/dll_host.cc -Fe%t
 // RUN: %clangxx_asan -LD -O0 %s -Fe%t.dll
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t %t.dll 2>&1 | cat | FileCheck %s
+// RUN: not %run %t %t.dll 2>&1 | FileCheck %s
 
 #include <process.h>
 
index 0c98322..509e0af 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: %clangxx_asan -O0 %p/dll_host.cc -Fe%t
 // RUN: %clangxx_asan -LD -O0 %s -Fe%t.dll
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t %t.dll 2>&1 | cat | FileCheck %s
+// RUN: not %run %t %t.dll 2>&1 | FileCheck %s
 
 extern "C" __declspec(dllexport)
 int test_function() {
index c014b4b..09302c3 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: %clangxx_asan -O0 %p/dll_host.cc -Fe%t
 // RUN: %clangxx_asan -LD -O0 %s -Fe%t.dll
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t %t.dll 2>&1 | cat | FileCheck %s
+// RUN: not %run %t %t.dll 2>&1 | FileCheck %s
 
 struct C {
   int x;
index 6051a1f..24f98dd 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: %clangxx_asan -O0 %p/dll_host.cc -Fe%t
 // RUN: %clangxx_asan -LD -O0 %s -Fe%t.dll
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t %t.dll 2>&1 | cat | FileCheck %s
+// RUN: not %run %t %t.dll 2>&1 | FileCheck %s
 
 #include <sanitizer/asan_interface.h>
 
index 322aa53..22d9970 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: %clangxx_asan -O0 %p/dll_host.cc -Fe%t
 // RUN: %clangxx_asan -LD -O0 %s -Fe%t.dll
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: env ASAN_OPTIONS=detect_stack_use_after_return=1 not %run %t %t.dll 2>&1 | cat | FileCheck %s
+// RUN: env ASAN_OPTIONS=detect_stack_use_after_return=1 not %run %t %t.dll 2>&1 | FileCheck %s
 
 #include <malloc.h>
 
index e777e1b..a84eeb9 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: %clangxx_asan -O0 %p/dll_host.cc -Fe%t
 // RUN: %clangxx_asan -LD -O0 %s -Fe%t.dll
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t %t.dll 2>&1 | cat | FileCheck %s
+// RUN: not %run %t %t.dll 2>&1 | FileCheck %s
 
 #include <windows.h>
 #include <malloc.h>
index de0c0b5..6745c59 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <malloc.h>
 
index 795af4a..1cd7080 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <malloc.h>
 
index ade39fe..b54a2bb 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <windows.h>
 #include <stdio.h>
index 64f38da..73ce951 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <stdio.h>
 #include <string.h>
index 1e1a26d..1bc235f 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <stdio.h>
 #include <string.h>
index f32f403..62a5be8 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <stdio.h>
 #include <string.h>
index bf83ad4..2f6516e 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <malloc.h>
 
index 0d6b611..ba1bf93 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <malloc.h>
 
index aac64ba..3f873cc 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <malloc.h>
 
index 33b6377..082cf4c 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 int main() {
   char *buffer = new char[42];
index 8af6da1..1465fa0 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <windows.h>
 
index f4f95ac..f48d7a6 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <windows.h>
 
index aa5f495..1702b51 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 struct C {
   int x;
index 378b089..7358cba 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <windows.h>
 
index 8776ea2..77454fa 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <windows.h>
 
index 135a101..e6df9c9 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <windows.h>
 
index 35331fb..350598a 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <windows.h>
 
index eb63d56..511e509 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <malloc.h>
 
index 31dfe7b..3b0ad19 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <malloc.h>
 
index f35740b..45c5598 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <malloc.h>
 
index 22f38fc..65385e2 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <stdio.h>
 
index d553e4e..ac267bf 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <stdio.h>
 
index 03ab70e..1eb6442 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: env ASAN_OPTIONS=detect_stack_use_after_return=1 not %run %t 2>&1 | cat | FileCheck %s
+// RUN: env ASAN_OPTIONS=detect_stack_use_after_return=1 not %run %t 2>&1 | FileCheck %s
 
 char *x;
 
index cfc7236..30e8ce0 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <windows.h>
 
index df5894b..365288d 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <windows.h>
 
index 2ec32a1..6bd722b 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 #include <malloc.h>
 
index 3fab7c9..0f43a6a 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 class Parent {
  public:
index 918f23f..02c9b9f 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
-// FIXME: 'cat' is needed due to PR19744.
-// RUN: not %run %t 2>&1 | cat | FileCheck %s
+// RUN: not %run %t 2>&1 | FileCheck %s
 
 class Parent {
  public: