[compiler-rt] r198919 - [msan] Temporarily disable two tests that are failing with new glibc.

Evgeniy Stepanov eugeni.stepanov at gmail.com
Thu Jan 9 23:34:17 PST 2014


Author: eugenis
Date: Fri Jan 10 01:34:16 2014
New Revision: 198919

URL: http://llvm.org/viewvc/llvm-project?rev=198919&view=rev
Log:
[msan] Temporarily disable two tests that are failing with new glibc.

Modified:
    compiler-rt/trunk/lib/msan/tests/msan_test.cc

Modified: compiler-rt/trunk/lib/msan/tests/msan_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/msan/tests/msan_test.cc?rev=198919&r1=198918&r2=198919&view=diff
==============================================================================
--- compiler-rt/trunk/lib/msan/tests/msan_test.cc (original)
+++ compiler-rt/trunk/lib/msan/tests/msan_test.cc Fri Jan 10 01:34:16 2014
@@ -1553,13 +1553,15 @@ TEST(MemorySanitizer, strtoull) {
   EXPECT_NOT_POISONED((S8) e);
 }
 
-TEST(MemorySanitizer, strtoimax) {
+// https://code.google.com/p/memory-sanitizer/issues/detail?id=36
+TEST(MemorySanitizer, DISABLED_strtoimax) {
   char *e;
   assert(1 == strtoimax("1", &e, 10));
   EXPECT_NOT_POISONED((S8) e);
 }
 
-TEST(MemorySanitizer, strtoumax) {
+// https://code.google.com/p/memory-sanitizer/issues/detail?id=36
+TEST(MemorySanitizer, DISABLED_strtoumax) {
   char *e;
   assert(1 == strtoumax("1", &e, 10));
   EXPECT_NOT_POISONED((S8) e);





More information about the llvm-commits mailing list