summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/Windows
diff options
context:
space:
mode:
authorReid Kleckner <rnk@google.com>2016-08-02 20:26:59 +0000
committerReid Kleckner <rnk@google.com>2016-08-02 20:26:59 +0000
commitf9dff4e1068eecd0fe31761258fa5b50a303a2d4 (patch)
treec3e79b02ddf8208a8da8b255c924e2cd12863419 /test/asan/TestCases/Windows
parent5aa497d0fd2557e4253eba169f5271063604245a (diff)
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. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@277514 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/asan/TestCases/Windows')
-rw-r--r--test/asan/TestCases/Windows/queue_user_work_item_report.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/asan/TestCases/Windows/queue_user_work_item_report.cc b/test/asan/TestCases/Windows/queue_user_work_item_report.cc
index e500a919f..26bd5e09d 100644
--- a/test/asan/TestCases/Windows/queue_user_work_item_report.cc
+++ b/test/asan/TestCases/Windows/queue_user_work_item_report.cc
@@ -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;
}