Re-commit the test for regex that I busted last night - now passes under ASAN
authorMarshall Clow <mclow.lists@gmail.com>
Tue, 16 Dec 2014 16:22:43 +0000 (16:22 +0000)
committerMarshall Clow <mclow.lists@gmail.com>
Tue, 16 Dec 2014 16:22:43 +0000 (16:22 +0000)
llvm-svn: 224342

libcxx/test/re/re.submatch/re.submatch.op/compare.pass.cpp

index 9a2588e..36376aa 100644 (file)
@@ -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);
 }