[compiler-rt] r219481 - [Tsan] Fix comments in the user_fopen.cc and user_malloc.cc tests

Viktor Kutuzov vkutuzov at accesssoftek.com
Fri Oct 10 00:01:52 PDT 2014


Author: vkutuzov
Date: Fri Oct 10 02:01:52 2014
New Revision: 219481

URL: http://llvm.org/viewvc/llvm-project?rev=219481&view=rev
Log:
[Tsan] Fix comments in the user_fopen.cc and user_malloc.cc tests
Related revision: http://reviews.llvm.org/D5670

Modified:
    compiler-rt/trunk/test/tsan/Linux/user_fopen.cc
    compiler-rt/trunk/test/tsan/Linux/user_malloc.cc

Modified: compiler-rt/trunk/test/tsan/Linux/user_fopen.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/Linux/user_fopen.cc?rev=219481&r1=219480&r2=219481&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/Linux/user_fopen.cc (original)
+++ compiler-rt/trunk/test/tsan/Linux/user_fopen.cc Fri Oct 10 02:01:52 2014
@@ -2,7 +2,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 
-// defined by tsan.
+// Defined by tsan.
 extern "C" FILE *__interceptor_fopen(const char *file, const char *mode);
 extern "C" int __interceptor_fileno(FILE *f);
 

Modified: compiler-rt/trunk/test/tsan/Linux/user_malloc.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/Linux/user_malloc.cc?rev=219481&r1=219480&r2=219481&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/Linux/user_malloc.cc (original)
+++ compiler-rt/trunk/test/tsan/Linux/user_malloc.cc Fri Oct 10 02:01:52 2014
@@ -1,7 +1,7 @@
 // RUN: %clangxx_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s
 #include <stdio.h>
 
-// defined by tsan.
+// Defined by tsan.
 extern "C" void *__interceptor_malloc(unsigned long size);
 extern "C" void __interceptor_free(void *p);
 





More information about the llvm-commits mailing list