[compiler-rt] r277514 - Remove stale CHECK lines that should have been included in r277478

Reid Kleckner via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 2 13:26:59 PDT 2016


Author: rnk
Date: Tue Aug  2 15:26:59 2016
New Revision: 277514

URL: http://llvm.org/viewvc/llvm-project?rev=277514&view=rev
Log:
Remove stale CHECK lines that should have been included in r277478

We no longer assign ids to unregistered threads. We don't have any stack
trace for thread creation for these worker threads, so this shouldn't
affect report quality much.

Modified:
    compiler-rt/trunk/test/asan/TestCases/Windows/queue_user_work_item_report.cc

Modified: compiler-rt/trunk/test/asan/TestCases/Windows/queue_user_work_item_report.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Windows/queue_user_work_item_report.cc?rev=277514&r1=277513&r2=277514&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Windows/queue_user_work_item_report.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Windows/queue_user_work_item_report.cc Tue Aug  2 15:26:59 2016
@@ -12,8 +12,6 @@ DWORD CALLBACK work_item(LPVOID) {
 // CHECK: AddressSanitizer: stack-buffer-underflow on address [[ADDR:0x[0-9a-f]+]]
 // CHECK: WRITE of size 1 at [[ADDR]] thread T1
 // CHECK:   {{#0 .* work_item.*queue_user_work_item_report.cc}}:[[@LINE-3]]
-// CHECK: Address [[ADDR]] is located in stack of thread T1 at offset {{.*}} in frame
-// CHECK:   work_item
   SetEvent(done);
   return 0;
 }




More information about the llvm-commits mailing list