diff options
author | Eric Christopher <echristo@gmail.com> | 2013-05-30 00:43:26 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-05-30 00:43:26 +0000 |
commit | 8463b427817bfd9a7b51c8000b43d6d5a651623c (patch) | |
tree | dc7a65183f91dd1d7e5567d62e0a67a3b1579094 /llvm/unittests/Support/MD5Test.cpp | |
parent | 2aa007c59c106199e49ab419e819bd1ed90d08d1 (diff) | |
download | bcm5719-llvm-8463b427817bfd9a7b51c8000b43d6d5a651623c.tar.gz bcm5719-llvm-8463b427817bfd9a7b51c8000b43d6d5a651623c.zip |
Add a comment and some tests including the NULL byte.
llvm-svn: 182900
Diffstat (limited to 'llvm/unittests/Support/MD5Test.cpp')
-rw-r--r-- | llvm/unittests/Support/MD5Test.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/unittests/Support/MD5Test.cpp b/llvm/unittests/Support/MD5Test.cpp index 159ae3e4631..6afaa15c27b 100644 --- a/llvm/unittests/Support/MD5Test.cpp +++ b/llvm/unittests/Support/MD5Test.cpp @@ -19,6 +19,7 @@ using namespace llvm; namespace { +/// \brief Tests an arbitrary set of bytes passed as \p Input. void TestMD5Sum(ArrayRef<unsigned char> Input, StringRef Final) { MD5 Hash; Hash.update(Input); @@ -38,5 +39,13 @@ TEST(MD5Test, MD5) { (const unsigned char *)"abcdefghijklmnopqrstuvwxyz", (size_t) 26), "c3fcd3d76192e4007dfb496cca67e13b"); + TestMD5Sum(ArrayRef<unsigned char>((const unsigned char *)"\0", (size_t) 1), + "93b885adfe0da089cdf634904fd59f71"); + TestMD5Sum(ArrayRef<unsigned char>((const unsigned char *)"a\0", (size_t) 2), + "4144e195f46de78a3623da7364d04f11"); + TestMD5Sum(ArrayRef<unsigned char>( + (const unsigned char *)"abcdefghijklmnopqrstuvwxyz\0", + (size_t) 27), + "81948d1f1554f58cd1a56ebb01f808cb"); } } |