diff options
| author | Marshall Clow <mclow.lists@gmail.com> | 2014-12-16 16:22:43 +0000 |
|---|---|---|
| committer | Marshall Clow <mclow.lists@gmail.com> | 2014-12-16 16:22:43 +0000 |
| commit | d60fe11919e502d059118aeb179b4a611314bf8e (patch) | |
| tree | 423f257c6e41a3db7a78dc096e5e03a5653e1da7 | |
| parent | 8d9b93eac83a5eb2eff0bca20190b0bb3f0a36ab (diff) | |
| download | bcm5719-llvm-d60fe11919e502d059118aeb179b4a611314bf8e.tar.gz bcm5719-llvm-d60fe11919e502d059118aeb179b4a611314bf8e.zip | |
Re-commit the test for regex that I busted last night - now passes under ASAN
llvm-svn: 224342
| -rw-r--r-- | libcxx/test/re/re.submatch/re.submatch.op/compare.pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/re/re.submatch/re.submatch.op/compare.pass.cpp b/libcxx/test/re/re.submatch/re.submatch.op/compare.pass.cpp index 9a2588e1f5d..36376aa0563 100644 --- a/libcxx/test/re/re.submatch/re.submatch.op/compare.pass.cpp +++ b/libcxx/test/re/re.submatch/re.submatch.op/compare.pass.cpp @@ -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); } |

