[asan] fix lint, remove debug prints
authorKostya Serebryany <kcc@google.com>
Fri, 7 Dec 2012 18:07:52 +0000 (18:07 +0000)
committerKostya Serebryany <kcc@google.com>
Fri, 7 Dec 2012 18:07:52 +0000 (18:07 +0000)
llvm-svn: 169620

compiler-rt/lib/asan/tests/asan_test.cc
compiler-rt/lib/sanitizer_common/tests/sanitizer_common_test.cc

index a114580..7bb6e29 100644 (file)
@@ -1681,7 +1681,6 @@ TEST(AddressSanitizer, ThreadNamesTest) {
                ".*Thread T2 .FreeThr. created by T0 here:"
                ".*Thread T1 .AllocThr. created by T0 here:"
                "");
-
 }
 #endif
 
index bb580f6..dfb8884 100644 (file)
@@ -91,7 +91,6 @@ TEST(SanitizerCommon, SanitizerSetThreadName) {
     EXPECT_TRUE(SanitizerSetThreadName(names[i]));
     char buff[100];
     EXPECT_TRUE(SanitizerGetThreadName(buff, sizeof(buff) - 1));
-    Printf("buff: %s\n", buff);
     EXPECT_EQ(0, internal_strcmp(buff, names[i]));
   }
 }