[libcxx] r224342 - Re-commit the test for regex that I busted last night - now passes under ASAN

Marshall Clow mclow.lists at gmail.com
Tue Dec 16 08:22:43 PST 2014


Author: marshall
Date: Tue Dec 16 10:22:43 2014
New Revision: 224342

URL: http://llvm.org/viewvc/llvm-project?rev=224342&view=rev
Log:
Re-commit the test for regex that I busted last night - now passes under ASAN

Modified:
    libcxx/trunk/test/re/re.submatch/re.submatch.op/compare.pass.cpp

Modified: libcxx/trunk/test/re/re.submatch/re.submatch.op/compare.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/re/re.submatch/re.submatch.op/compare.pass.cpp?rev=224342&r1=224341&r2=224342&view=diff
==============================================================================
--- libcxx/trunk/test/re/re.submatch/re.submatch.op/compare.pass.cpp (original)
+++ libcxx/trunk/test/re/re.submatch/re.submatch.op/compare.pass.cpp Tue Dec 16 10:22:43 2014
@@ -282,6 +282,6 @@ int main()
     test(std::string("1234"), std::string("123"));
     test(std::wstring(L"123"), std::wstring(L"123"));
     test(std::wstring(L"1234"), std::wstring(L"123"));
-//     test(std::string("123\00056", 6), std::string("123\056", 6), false);
-//     test(std::wstring(L"123\00056", 6), std::wstring(L"123\056", 6), false);
+    test(std::string("123\00056", 6), std::string("123\00056", 6), false);
+    test(std::wstring(L"123\00056", 6), std::wstring(L"123\00056", 6), false);
 }





More information about the cfe-commits mailing list