[TSan] Fixup for r178128: verify that TSan indeed doesn't report race

llvm-svn: 178129
This commit is contained in:
Alexey Samsonov 2013-03-27 10:22:51 +00:00
parent 059e61f8b0
commit f903a9ee6e
1 changed files with 2 additions and 0 deletions

View File

@ -28,5 +28,7 @@ int main() {
pthread_join(t[0], NULL);
pthread_join(t[1], NULL);
printf("Pass\n");
// CHECK-NOT: ThreadSanitizer: data race
// CHECK: Pass
return 0;
}